From 56d6d0e05dda2266f203d71fd7fd769847fc0475 Mon Sep 17 00:00:00 2001 From: solomon Date: Mon, 26 Jun 2023 10:05:31 -0700 Subject: [PATCH] Update upper version bounds to support ghc945 --- .github/workflows/cabal.yml | 2 +- flake.nix | 2 +- monoidal-functors.cabal | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cabal.yml b/.github/workflows/cabal.yml index 92900e7..488eb3d 100644 --- a/.github/workflows/cabal.yml +++ b/.github/workflows/cabal.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: cabal: ["3.6"] - ghc: ["8.10.7", "9.0.2", "9.2.4"] + ghc: ["8.10.7", "9.0.2", "9.2.4", "9.4.5"] steps: - name: Checkout diff --git a/flake.nix b/flake.nix index ce0658f..8c15fb1 100644 --- a/flake.nix +++ b/flake.nix @@ -8,7 +8,7 @@ outputs = { self, nixpkgs, flake-utils }: let - ghcVersion = "924"; + ghcVersion = "945"; compiler = "ghc${ghcVersion}"; # default systems compatible with pre-commit-hooks.nix # https://github.com/cachix/pre-commit-hooks.nix/pull/122 diff --git a/monoidal-functors.cabal b/monoidal-functors.cabal index 309ac0d..4996a4d 100644 --- a/monoidal-functors.cabal +++ b/monoidal-functors.cabal @@ -47,7 +47,7 @@ common common-extensions library import: common-extensions build-depends: - base >= 4.12 && < 4.17, + base >= 4.12 && < 4.18, bifunctors >= 5.6.1 && < 5.7, tagged >= 0.8.7 && < 0.9, transformers >= 0.5.6 && <= 0.6.1.0,