saltine 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+4/−2 lines, 2 filesdep +semigroupsPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependencies added: semigroups
API changes (from Hackage documentation)
- Crypto.Saltine.Class: class IsEncoding a where encoded = prism' encode decode
+ Crypto.Saltine.Class: class IsEncoding a
Files
- saltine.cabal +2/−1
- tests/Util.hs +2/−1
saltine.cabal view
@@ -1,5 +1,5 @@ name: saltine-version: 0.1.0.0+version: 0.1.0.1 synopsis: Cryptography that's easy to digest (NaCl/libsodium bindings). description: @@ -89,3 +89,4 @@ , QuickCheck , test-framework-quickcheck2 , test-framework+ , semigroups
tests/Util.hs view
@@ -11,6 +11,7 @@ import Data.Monoid import Data.Word (Word8) import Data.Bits (xor)+import Data.Semigroup (Semigroup) import Test.QuickCheck import GHC.Exts (IsList(..)) @@ -30,7 +31,7 @@ Just x -> x newtype Perturb = Perturb [Word8]- deriving (Show,Monoid)+ deriving (Show,Semigroup,Monoid) instance IsList Perturb where type Item Perturb = Word8