From 7dfaf914e6d25181e2aef42e742e6e4efacd700a Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Sun, 13 Mar 2022 20:54:14 +0800 Subject: [PATCH] release 0.30 --- CHANGELOG.md | 12 ++++++++++++ cryptonite.cabal | 6 +++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index faa4468..e6a49d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.30 + +* Fix some C symbol blake2b prefix to be cryptonite_ prefix (fix mixing with other C library) +* add hmac-lazy +* Fix compilation with GHC 9.2 +* Drop support for GHC8.0, GHC8.2, GHC8.4, GHC8.6 + +## 0.29 + +* advance compilation with gmp breakage due to change upstream +* Add native EdDSA support + ## 0.28 * Add hash constant time capability diff --git a/cryptonite.cabal b/cryptonite.cabal index 83d100b..ac07d7e 100644 --- a/cryptonite.cabal +++ b/cryptonite.cabal @@ -1,5 +1,5 @@ Name: cryptonite -version: 0.29 +version: 0.30 Synopsis: Cryptography Primitives sink Description: A repository of cryptographic primitives. @@ -36,7 +36,7 @@ Build-Type: Simple Homepage: https://github.com/haskell-crypto/cryptonite Bug-reports: https://github.com/haskell-crypto/cryptonite/issues Cabal-Version: 1.18 -tested-with: GHC==8.8.2, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2 +tested-with: GHC==9.2.2, GHC==9.0.2, GHC==8.10.7, GHC==8.8.4 extra-doc-files: README.md CHANGELOG.md extra-source-files: cbits/*.h cbits/aes/*.h @@ -245,7 +245,7 @@ Library Crypto.Internal.Nat Crypto.Internal.Words Crypto.Internal.WordArray - if impl(ghc < 8.0) + if impl(ghc < 8.8) Buildable: False else Build-depends: base