haxl-amazonka 0.1.0.0 → 0.1.1
raw patch · 2 files changed
+10/−6 lines, 2 filesdep ~haxlPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: haxl
API changes (from Hackage documentation)
- Network.AWS.DataSource: instance Haxl.Core.Show1.Show1 Network.AWS.DataSource.AWSReq
+ Network.AWS.DataSource: instance Haxl.Core.ShowP.ShowP Network.AWS.DataSource.AWSReq
Files
- haxl-amazonka.cabal +8/−4
- lib/Network/AWS/DataSource.hs +2/−2
haxl-amazonka.cabal view
@@ -1,7 +1,7 @@ name: haxl-amazonka-version: 0.1.0.0-synopsis: Simple project template from stack-description: Please see README.md+version: 0.1.1+synopsis: Haxl data source for accessing AWS services through amazonka.+description: Haxl data source for accessing AWS services through amazonka. homepage: http://github.com/tvh/haxl-amazonka#readme license: BSD3 license-file: LICENSE@@ -11,11 +11,15 @@ build-type: Simple cabal-version: >=1.10 +source-repository HEAD+ type: git+ location: https://github.com/tvh/haxl-amazonka.git+ library hs-source-dirs: lib default-language: Haskell2010 build-depends: base >= 4.7 && < 5- , haxl >= 0.3+ , haxl >= 0.5 , amazonka >= 1.3 , amazonka-core >= 1.3 , async
lib/Network/AWS/DataSource.hs view
@@ -68,8 +68,8 @@ instance DataSourceName AWSReq where dataSourceName _ = "AWS" -instance Show1 AWSReq where- show1 = show+instance ShowP AWSReq where+ showp = show instance StateKey AWSReq where data State AWSReq = AWSState AWS.Env