diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index f43cff0..10c2803 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -28,6 +28,11 @@ jobs: strategy: matrix: include: + - compiler: ghc-9.10.1 + compilerKind: ghc + compilerVersion: 9.10.1 + setup-method: ghcup + allow-failure: false - compiler: ghc-9.8.2 compilerKind: ghc compilerVersion: 9.8.2 diff --git a/.gitignore b/.gitignore index abfd56a..3c526ec 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ dist-newstyle/ dist/ result +.direnv +.envrc diff --git a/flake.nix b/flake.nix index 642a91f..f8698b2 100644 --- a/flake.nix +++ b/flake.nix @@ -13,6 +13,7 @@ "ghc94" "ghc96" "ghc98" + "ghc910" ]; defaultCompiler = "ghc96"; }; diff --git a/servant-activeresource.cabal b/servant-activeresource.cabal index 65fd9e3..53f7236 100644 --- a/servant-activeresource.cabal +++ b/servant-activeresource.cabal @@ -24,7 +24,13 @@ extra-doc-files: README.md tested-with: - GHC ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.5 || ==9.6.6 || ==9.8.2 + GHC ==8.10.7 + || ==9.0.2 + || ==9.2.4 + || ==9.4.5 + || ==9.6.6 + || ==9.8.2 + || ==9.10.1 source-repository head type: git @@ -42,12 +48,12 @@ common opts common deps build-depends: , aeson ^>=2.1.1.0 || ^>=2.2 - , base >=4.14 && <4.20 + , base >=4.14 && <4.21 , bytestring >=0.10.12 && <0.13 , containers ^>=0.6 || ^>=0.7 , servant >=0.19 && <0.21 , servant-server >=0.19 && <0.21 - , template-haskell >=2.16 && <2.22 + , template-haskell >=2.16 && <2.23 , text ^>=1.2 || >=2.0 && <=2.2 library