Skip to content

Commit

Permalink
Merge updates from 0.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
piyush-kurur committed Oct 7, 2023
2 parents f768ae1 + f52f891 commit 611ea87
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 14 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Get the Repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: 'Trailing white spaces ?'
uses: harupy/find-trailing-whitespace@master

- name: 'Set up HLint'
uses: haskell/actions/hlint-setup@v2

- name: 'Run HLint'
uses: haskell/actions/hlint-run@v2
uses: haskell-actions/hlint-scan@v1
with:
fail-on: warning
18 changes: 14 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,17 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
ghc: [ '8.4' , '8.6', '8.8', '8.10', '9.0', '9.2', 'latest']
ghc:
# - '8.4' (Haddock failure)
# - '8.6' (Haddock failure)
- '8.8'
- '8.10'
- '9.0'
- '9.2'
- '9.4'
- '9.6'
- 'latest'

include:
- os: windows-latest
ghc: 'latest'
Expand All @@ -23,17 +33,17 @@ jobs:

steps:
- name: 'Setup'
uses: haskell/actions/setup@v1
uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}

cabal-version: 'latest'
- name: Information
run: |
ghc --version
cabal --version
- name: Get the Repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Submodules
run: git submodule update --init libverse
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,18 @@
- [ ] Key Exchange (via X25519)
- [ ] Signature scheme (via ED25519)

## [0.3.8] - Oct 6, 2023

Release that supports ghc-9.6 (base 4.18)


## [0.3.7] - Nov 14, 2022

Release that supports ghc-9.4 (base 0.4.17).
Release that supports ghc-9.4 (base 4.17).

## [0.3.6] - Dec 3, 2021

Release that supports ghc-9.2 (base 0.4.16).
Release that supports ghc-9.2 (base 4.16).

## [0.3.5] - Oct 10, 2021

Expand Down Expand Up @@ -204,4 +209,5 @@ This release comes with very little changes.
[0.3.5]: <http://github.com/raaz-crypto/raaz/releases/tag/v0.3.5>
[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>
[raaz]: <http://github.com/raaz-crypto/raaz/>
6 changes: 3 additions & 3 deletions raaz.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ common defaults
default-language: Haskell2010
ghc-options: -Wall
default-extensions: NoImplicitPrelude
build-depends: base >= 4.11 && < 4.18
, bytestring >= 0.10 && < 0.12
, deepseq >= 1.4 && < 1.5
build-depends: base >= 4.11 && < 4.19
, bytestring >= 0.10 && < 0.13
, deepseq >= 1.4 && < 1.6
, vector >= 0.12 && < 0.14

------------------------ Compiler optimisation flags -------------------------------------
Expand Down

0 comments on commit 611ea87

Please sign in to comment.