amazonka-sqs 0.0.6 → 0.0.7
raw patch · 2 files changed
+4/−4 lines, 2 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- amazonka-sqs.cabal +2/−2
- gen/Network/AWS/SQS/Types.hs +2/−2
amazonka-sqs.cabal view
@@ -1,5 +1,5 @@ name: amazonka-sqs-version: 0.0.6+version: 0.0.7 synopsis: Amazon Simple Queue Service SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -60,5 +60,5 @@ other-modules: build-depends:- amazonka-core == 0.0.6.*+ amazonka-core == 0.0.7.* , base >= 4.7 && < 5
gen/Network/AWS/SQS/Types.hs view
@@ -228,10 +228,10 @@ instance FromXML MessageAttributeValue where parseXML x = MessageAttributeValue- <$> x .@ "BinaryListValue"+ <$> x .@? "BinaryListValue" .!@ mempty <*> x .@? "BinaryValue" <*> x .@ "DataType"- <*> x .@ "StringListValue"+ <*> x .@? "StringListValue" .!@ mempty <*> x .@? "StringValue" instance ToQuery MessageAttributeValue where