packages feed

amazonka-importexport 0.1.3 → 0.1.4

raw patch · 2 files changed

+5/−5 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-importexport.cabal view
@@ -1,5 +1,5 @@ name:                  amazonka-importexport-version:               0.1.3+version:               0.1.4 synopsis:              Amazon Import/Export SDK. homepage:              https://github.com/brendanhay/amazonka license:               OtherLicense@@ -48,5 +48,5 @@     other-modules:      build-depends:-          amazonka-core == 0.1.3.*+          amazonka-core == 0.1.4.*         , base          >= 4.7     && < 5
gen/Network/AWS/ImportExport/Types.hs view
@@ -101,9 +101,9 @@ instance Hashable JobType  instance FromText JobType where-    parser = takeText >>= \case-        "Export" -> pure Export'-        "Import" -> pure Import'+    parser = takeLowerText >>= \case+        "export" -> pure Export'+        "import" -> pure Import'         e        -> fail $             "Failure parsing JobType from " ++ show e