Skip to content

Commit

Permalink
Add support for GHC9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
solomon-b committed Aug 3, 2023
1 parent beca8c7 commit bb3b4c0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cabal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
cabal: ["3.6"]
ghc: ["8.10.7", "9.0.2", "9.2.4", "9.4.5"]
ghc: ["8.10.7", "9.0.2", "9.2.4", "9.4.5" "9.6.2"]

steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Revision history for monoidal-functors

## Upcoming
* Add support for GHC 9.6

## 0.2.2.0 -- 2023-06-26

Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

outputs = { self, nixpkgs, flake-utils }:
let
ghcVersion = "945";
ghcVersion = "962";
compiler = "ghc${ghcVersion}";
# default systems compatible with pre-commit-hooks.nix
# https://github.com/cachix/pre-commit-hooks.nix/pull/122
Expand Down
15 changes: 10 additions & 5 deletions monoidal-functors.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ homepage: http://github.com/solomon-b/monoidal-functors
build-type: Simple
extra-source-files: CHANGELOG.md
description: A typeclass hierarchy for monoidal functors.
tested-with: GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.4
, GHC == 9.4.5
, GHC == 9.6.2
source-repository head
type: git
location: https://github.com/solomon-b/monoidal-functors
Expand Down Expand Up @@ -47,18 +52,18 @@ common common-extensions
library
import: common-extensions
build-depends:
base >= 4.12 && < 4.18,
bifunctors >= 5.6.1 && < 5.7,
base >= 4.12 && < 5,
bifunctors >= 5.6.1 && < 6,
tagged >= 0.8.7 && < 0.9,
transformers >= 0.5.6 && <= 0.6.1.0,
comonad >= 5.0.8 && < 5.1,
transformers >= 0.5.6 && < 0.7,
comonad >= 5.0.8 && < 6,
distributive >= 0.6.2 && < 0.7,
contravariant >= 1.5.5 && < 1.6,
profunctors >= 5.6.2 && < 5.7,
semialign >= 1.3 && < 1.4,
semigroupoids >= 6.0.0 && < 6.1,
these >= 1.2 && < 1.3,
mtl >= 2.2.2 && <= 2.3.1,
mtl >= 2.2.2 && < 2.4,

exposed-modules:
Control.Category.Tensor
Expand Down

0 comments on commit bb3b4c0

Please sign in to comment.