release 0.30
This commit is contained in:
parent
aca61fa1b6
commit
7dfaf914e6
12
CHANGELOG.md
12
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
|
## 0.28
|
||||||
|
|
||||||
* Add hash constant time capability
|
* Add hash constant time capability
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
Name: cryptonite
|
Name: cryptonite
|
||||||
version: 0.29
|
version: 0.30
|
||||||
Synopsis: Cryptography Primitives sink
|
Synopsis: Cryptography Primitives sink
|
||||||
Description:
|
Description:
|
||||||
A repository of cryptographic primitives.
|
A repository of cryptographic primitives.
|
||||||
@ -36,7 +36,7 @@ Build-Type: Simple
|
|||||||
Homepage: https://github.com/haskell-crypto/cryptonite
|
Homepage: https://github.com/haskell-crypto/cryptonite
|
||||||
Bug-reports: https://github.com/haskell-crypto/cryptonite/issues
|
Bug-reports: https://github.com/haskell-crypto/cryptonite/issues
|
||||||
Cabal-Version: 1.18
|
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-doc-files: README.md CHANGELOG.md
|
||||||
extra-source-files: cbits/*.h
|
extra-source-files: cbits/*.h
|
||||||
cbits/aes/*.h
|
cbits/aes/*.h
|
||||||
@ -245,7 +245,7 @@ Library
|
|||||||
Crypto.Internal.Nat
|
Crypto.Internal.Nat
|
||||||
Crypto.Internal.Words
|
Crypto.Internal.Words
|
||||||
Crypto.Internal.WordArray
|
Crypto.Internal.WordArray
|
||||||
if impl(ghc < 8.0)
|
if impl(ghc < 8.8)
|
||||||
Buildable: False
|
Buildable: False
|
||||||
else
|
else
|
||||||
Build-depends: base
|
Build-depends: base
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user