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

Bump up versions for ghc-9.10 #464

Merged
merged 5 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- '9.4'
- '9.6'
- '9.8'
- '9.10'
- 'latest'

include:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change log for [raaz].

## [0.3.10] - Feb 1, 2024

Release that supports ghc-9.10 (base 4.20)

## [0.3.9] - Feb 1, 2024

Release that supports ghc-9.8 (base 4.19)
Expand Down Expand Up @@ -208,4 +212,5 @@ This release comes with very little changes.
[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>
[0.3.10]: <http://github.com/raaz-crypto/raaz/releases/tag/v0.3.10>
[raaz]: <http://github.com/raaz-crypto/raaz/>
31 changes: 25 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 2 additions & 7 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,19 @@
description = "Development environment for raaz, a fast and type safe cryptographic library in haskell";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};

outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
hpkgs = pkgs.haskell.packages.ghc942;
hpkgs = pkgs.haskell.packages.ghcHEAD;
in
{
devShell = pkgs.mkShell {
buildInputs = [ pkgs.editorconfig-checker
hpkgs.ghc
( hpkgs.ghcWithPackages ( p: with p; [
cabal-install

]))

];
};
}
Expand Down
6 changes: 3 additions & 3 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.9
version: 0.3.10
stability: experimental

synopsis: Fast and type safe cryptography.
Expand Down Expand Up @@ -192,7 +192,7 @@ common defaults
default-language: Haskell2010
ghc-options: -Wall
default-extensions: NoImplicitPrelude
build-depends: base >= 4.11 && < 4.20
build-depends: base >= 4.11 && < 4.21
, bytestring >= 0.10 && < 0.13
, deepseq >= 1.4 && < 1.6
, vector >= 0.12 && < 0.14
Expand Down Expand Up @@ -632,7 +632,7 @@ common test-defaults
import: defaults
build-depends: core
, HUnit >= 1.2 && < 1.7
, QuickCheck >= 2.4 && < 2.15
, QuickCheck >= 2.4 && < 2.16
, hspec >= 2.10.6 && < 2.12

library test-core
Expand Down
Loading