Skip to content

Commit

Permalink
Merge changes from 0.3.9 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
piyush-kurur committed Feb 1, 2024
2 parents 38d9245 + f1b13af commit e777425
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,3 @@ jobs:

- name: 'Run HLint'
uses: haskell-actions/hlint-scan@v1
with:
fail-on: warning
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- '9.2'
- '9.4'
- '9.6'
- '9.8'
- 'latest'

include:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
- [ ] Key Exchange (via X25519)
- [ ] Signature scheme (via ED25519)

## [0.3.9] - Feb 1, 2024

Release that supports ghc-9.8 (base 4.19)

## [0.3.8] - Oct 6, 2023

Release that supports ghc-9.6 (base 4.18)
Expand Down Expand Up @@ -210,4 +214,5 @@ This release comes with very little changes.
[0.3.6]: <http://github.com/raaz-crypto/raaz/releases/tag/v0.3.6>
[0.3.7]: <http://github.com/raaz-crypto/raaz/releases/tag/v0.3.7>
[0.3.8]: <http://github.com/raaz-crypto/raaz/releases/tag/v0.3.8>
[0.3.9]: <http://github.com/raaz-crypto/raaz/releases/tag/v0.3.9>
[raaz]: <http://github.com/raaz-crypto/raaz/>
18 changes: 7 additions & 11 deletions raaz.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -627,21 +627,17 @@ executable raaz
, Command.Info
, Command.Checksum
, Usage
build-depends: optparse-applicative >= 0.13.0.0
build-depends: optparse-applicative >= 0.13.0.0 && < 0.19
, core
, raaz
if impl(ghc < 8)
-- 'transformers' needed for "Control.Monad.IO.Class" only
-- starting with base-4.9 we don't need 'transformers' anymore
build-depends: transformers

---------------------------------- Test suit -----------------------------------------------------
common test-defaults
import: defaults
build-depends: core
, HUnit >= 1.2
, QuickCheck >= 2.4
, hspec
, HUnit >= 1.2 && < 1.7
, QuickCheck >= 2.4 && < 2.15
, hspec >= 2.10.6 && < 2.12

library test-core
import: test-defaults
Expand Down Expand Up @@ -838,8 +834,8 @@ test-suite monocypher
common bench-defaults
import:defaults
hs-source-dirs: benchmarks/internal
build-depends: criterion-measurement >= 0.1
, pretty
build-depends: criterion-measurement >= 0.1 && < 0.3
, pretty >= 1.1.3 && < 1.2
, core

library bench-types
Expand Down Expand Up @@ -868,7 +864,7 @@ benchmark primitives
hs-source-dirs: benchmarks
main-is: Main.hs
type: exitcode-stdio-1.0
build-depends: pretty
build-depends: pretty >= 1.1.3 && < 1.2
, core
, implementation
, bench-types
Expand Down

0 comments on commit e777425

Please sign in to comment.