amazonka-cloudwatch-logs 1.0.0 → 1.0.1
raw patch · 3 files changed
+9/−9 lines, 3 filesdep ~amazonka-cloudwatch-logsdep ~amazonka-coredep ~amazonka-testPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-cloudwatch-logs, amazonka-core, amazonka-test
API changes (from Hackage documentation)
Files
- README.md +1/−1
- amazonka-cloudwatch-logs.cabal +5/−5
- gen/Network/AWS/CloudWatchLogs/Types/Sum.hs +3/−3
README.md view
@@ -8,7 +8,7 @@ ## Version -`1.0.0`+`1.0.1` ## Description
amazonka-cloudwatch-logs.cabal view
@@ -1,5 +1,5 @@ name: amazonka-cloudwatch-logs-version: 1.0.0+version: 1.0.1 synopsis: Amazon CloudWatch Logs SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -111,7 +111,7 @@ , Network.AWS.CloudWatchLogs.Types.Sum build-depends:- amazonka-core == 1.0.0.*+ amazonka-core == 1.0.1.* , base >= 4.7 && < 5 test-suite amazonka-cloudwatch-logs-test@@ -130,9 +130,9 @@ , Test.AWS.CloudWatchLogs.Internal build-depends:- amazonka-core == 1.0.0- , amazonka-test == 1.0.0- , amazonka-cloudwatch-logs == 1.0.0+ amazonka-core == 1.0.1+ , amazonka-test == 1.0.1+ , amazonka-cloudwatch-logs == 1.0.1 , base , bytestring , lens
gen/Network/AWS/CloudWatchLogs/Types/Sum.hs view
@@ -29,12 +29,12 @@ "lasteventtime" -> pure LastEventTime "logstreamname" -> pure LogStreamName e -> fromTextError $ "Failure parsing OrderBy from value: '" <> e- <> "'. Accepted values: lasteventtime, logstreamname"+ <> "'. Accepted values: LastEventTime, LogStreamName" instance ToText OrderBy where toText = \case- LastEventTime -> "lasteventtime"- LogStreamName -> "logstreamname"+ LastEventTime -> "LastEventTime"+ LogStreamName -> "LogStreamName" instance Hashable OrderBy instance ToByteString OrderBy