packages feed

antiope-shell 7.4.1 → 7.4.2

raw patch · 2 files changed

+4/−6 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

antiope-shell.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.4  name:                   antiope-shell-version:                7.4.1+version:                7.4.2 synopsis:               Please see the README on Github at <https://github.com/arbor/antiope#readme> description:            Please see the README on Github at <https://github.com/arbor/antiope#readme>. category:               Services
src/Antiope/Shell/S3.hs view
@@ -24,15 +24,13 @@ import qualified System.Exit          as IO import qualified System.Process       as IO -data PutObjectReply = PutObjectReply-  { versionId :: Text-  , eTag      :: Text+newtype PutObjectReply = PutObjectReply+  { eTag      :: Text   } deriving (Eq, Show, Generic)  instance J.FromJSON PutObjectReply where   parseJSON = J.withObject "PutObjectReply" $ \v -> PutObjectReply-        <$> v .: "VersionId"-        <*> v .: "ETag"+    <$> v .: "ETag"  -- | Puts file into a specified S3 bucket putFile :: MonadIO m