packages feed

amazonka-importexport 1.0.0 → 1.0.1

raw patch · 3 files changed

+9/−9 lines, 3 filesdep ~amazonka-coredep ~amazonka-importexportdep ~amazonka-testPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: amazonka-core, amazonka-importexport, amazonka-test

API changes (from Hackage documentation)

Files

README.md view
@@ -8,7 +8,7 @@  ## Version -`1.0.0`+`1.0.1`   ## Description
amazonka-importexport.cabal view
@@ -1,5 +1,5 @@ name:                  amazonka-importexport-version:               1.0.0+version:               1.0.1 synopsis:              Amazon Import/Export SDK. homepage:              https://github.com/brendanhay/amazonka license:               OtherLicense@@ -61,7 +61,7 @@         , Network.AWS.ImportExport.Types.Sum      build-depends:-          amazonka-core == 1.0.0.*+          amazonka-core == 1.0.1.*         , base          >= 4.7     && < 5  test-suite amazonka-importexport-test@@ -80,9 +80,9 @@         , Test.AWS.ImportExport.Internal      build-depends:-          amazonka-core == 1.0.0-        , amazonka-test == 1.0.0-        , amazonka-importexport == 1.0.0+          amazonka-core == 1.0.1+        , amazonka-test == 1.0.1+        , amazonka-importexport == 1.0.1         , base         , bytestring         , lens
gen/Network/AWS/ImportExport/Types/Sum.hs view
@@ -30,12 +30,12 @@         "export" -> pure Export         "import" -> pure Import         e -> fromTextError $ "Failure parsing JobType from value: '" <> e-           <> "'. Accepted values: export, import"+           <> "'. Accepted values: Export, Import"  instance ToText JobType where     toText = \case-        Export -> "export"-        Import -> "import"+        Export -> "Export"+        Import -> "Import"  instance Hashable     JobType instance ToByteString JobType