Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrading version of ghc #457

Merged
merged 11 commits into from
Oct 6, 2023
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 @@ -12,7 +12,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 @@ -21,17 +31,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
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# Change log for [raaz].

## [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 @@ -198,4 +202,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.7]: <http://github.com/raaz-crypto/raaz/releases/tag/v0.3.8>
[raaz]: <http://github.com/raaz-crypto/raaz/>
8 changes: 4 additions & 4 deletions raaz.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.0

name: raaz
version: 0.3.7
version: 0.3.8
stability: experimental

synopsis: Fast and type safe cryptography.
Expand Down 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
Loading