aws-general 0.1 → 0.1.1
raw patch · 3 files changed
+15/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +7/−0
- aws-general.cabal +3/−3
- src/Aws/SignatureV4.hs +5/−1
CHANGELOG.md view
@@ -1,3 +1,10 @@+0.1.1+=====++* Relax lower bound on cabal version for GHC-7.6.++* Update documentation of SignatureV4Credentials for aws-0.9.2.+ 0.1 ===
aws-general.cabal view
@@ -3,7 +3,7 @@ -- ------------------------------------------------------ -- Name: aws-general-Version: 0.1+Version: 0.1.1 Synopsis: Bindings for AWS General API Version 0.1 description: Bindings for AWS General API including AWS Signature V4.@@ -22,7 +22,7 @@ Category: Network, Web, AWS, Cloud, Distributed Computing Build-type: Simple -cabal-version: >= 1.18+cabal-version: >= 1.16 extra-doc-files: README.md,@@ -38,7 +38,7 @@ source-repository this type: git location: https://github.com/alephcloud/hs-aws-general.git- tag: 0.1+ tag: 0.1.1 flag normalize-signature-v4-date Description:
src/Aws/SignatureV4.hs view
@@ -161,13 +161,17 @@ -- | AWS access credentials. ----- This type is isomorphic to the 'Credential' type from the+-- This type is compatible with the 'Credential' type from the -- <https://hackage.haskell.org/package/aws aws package>. You may -- use the following function to get a 'SignatureV4Credential' -- from a 'Credential': -- -- > cred2credv4 :: Credential -> SignatureV4Credential+-- > #if MIN_VERSION_aws(0,9,2)+-- > cred2credv4 (Credential a b c _) = SignatureV4Credential a b c+-- > #else -- > cred2credv4 (Credential a b c) = SignatureV4Credential a b c+-- > #endif -- data SignatureV4Credentials = SignatureV4Credentials { sigV4AccessKeyId :: B.ByteString