amazonka-s3 0.2.3 → 0.3.0
raw patch · 3 files changed
+4/−4 lines, 3 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- amazonka-s3.cabal +2/−2
- gen/Network/AWS/S3/GetObject.hs +1/−1
- gen/Network/AWS/S3/GetObjectTorrent.hs +1/−1
amazonka-s3.cabal view
@@ -1,5 +1,5 @@ name: amazonka-s3-version: 0.2.3+version: 0.3.0 synopsis: Amazon Simple Storage Service SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -95,5 +95,5 @@ Network.AWS.S3.Internal build-depends:- amazonka-core == 0.2.3.*+ amazonka-core == 0.3.0.* , base >= 4.7 && < 5
gen/Network/AWS/S3/GetObject.hs view
@@ -515,7 +515,7 @@ type Rs GetObject = GetObjectResponse request = get- response = bodyResponse $ \h b -> GetObjectResponse+ response = bodyResponse $ \h s b -> GetObjectResponse <$> h ~:? "accept-ranges" <*> pure (RsBody b) <*> h ~:? "Cache-Control"
gen/Network/AWS/S3/GetObjectTorrent.hs view
@@ -117,5 +117,5 @@ type Rs GetObjectTorrent = GetObjectTorrentResponse request = get- response = bodyResponse . const $ \b -> GetObjectTorrentResponse+ response = bodyResponse $ \_ _ b -> GetObjectTorrentResponse <$> pure (RsBody b)