jose-jwt 0.9.4 → 0.9.5
raw patch · 3 files changed
+14/−4 lines, 3 filesdep ~aesonPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: aeson
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- Jose/Internal/Base64.hs +6/−1
- jose-jwt.cabal +3/−3
CHANGELOG.md view
@@ -1,3 +1,8 @@+0.9.5+-----++* Support for mtl 2.3+ 0.9.4 -----
Jose/Internal/Base64.hs view
@@ -1,11 +1,16 @@-{-# LANGUAGE OverloadedStrings, FlexibleContexts #-}+{-# LANGUAGE OverloadedStrings, FlexibleContexts, CPP #-} {-# OPTIONS_HADDOCK hide #-} -- | JWT-style base64 encoding and decoding module Jose.Internal.Base64 where +#if MIN_VERSION_mtl(2,2,1)+import Control.Monad.Except+#else import Control.Monad.Error+#endif+ import Data.ByteArray import Data.ByteArray.Encoding
jose-jwt.cabal view
@@ -1,5 +1,5 @@ Name: jose-jwt-Version: 0.9.4+Version: 0.9.5 Synopsis: JSON Object Signing and Encryption Library Homepage: http://github.com/tekul/jose-jwt Bug-Reports: http://github.com/tekul/jose-jwt/issues@@ -17,7 +17,7 @@ License: BSD3 License-File: LICENSE Build-Type: Simple-Cabal-Version: >= 1.16+Cabal-Version: 1.16 Category: JSON, Cryptography Extra-Source-Files:@@ -50,7 +50,7 @@ Buildable: False else Build-depends: base >= 4.9 && < 5- , aeson >= 1.5 && < 2.1+ , aeson >= 1.5 && < 2.2 , attoparsec >= 0.12.0.0 , bytestring >= 0.9 , cereal >= 0.4