From 2bf09d9b4007f3ec8ff79855f988aecb7949c944 Mon Sep 17 00:00:00 2001 From: Mark Karpov Date: Sat, 15 Jun 2024 19:27:24 +0200 Subject: [PATCH] Test with GHC 9.10.1, drop 9.4.x --- .github/workflows/ci.yaml | 2 +- stache.cabal | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e545620..2e9b35a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,7 +19,7 @@ jobs: strategy: matrix: cabal: ["3.10"] - ghc: ["9.4.7", "9.6.3", "9.8.1"] + ghc: ["9.6.3", "9.8.2", "9.10.1"] env: CONFIG: "--enable-tests --enable-benchmarks --flags=dev" steps: diff --git a/stache.cabal b/stache.cabal index 1560426..529824d 100644 --- a/stache.cabal +++ b/stache.cabal @@ -5,7 +5,7 @@ license: MIT license-file: LICENSE maintainer: Mark Karpov author: Mark Karpov -tested-with: ghc ==9.4.7 ghc ==9.6.3 ghc ==9.8.1 +tested-with: ghc ==9.6.3 ghc ==9.8.2 ghc ==9.10.1 homepage: https://github.com/stackbuilders/stache bug-reports: https://github.com/stackbuilders/stache/issues synopsis: Mustache templates for Haskell @@ -45,13 +45,13 @@ library build-depends: aeson >=2 && <3, base >=4.15 && <5, - containers >=0.5 && <0.7, + containers >=0.5 && <0.8, deepseq >=1.4 && <1.6, directory >=1.2 && <1.4, filepath >=1.2 && <1.5, megaparsec >=7 && <10, mtl >=2.1 && <3, - template-haskell >=2.11 && <2.22, + template-haskell >=2.11 && <2.23, text >=1.2 && <2.2, vector >=0.11 && <0.14 @@ -82,7 +82,7 @@ executable stache if flag(dev) ghc-options: -Wall -Werror -Wredundant-constraints -Wpartial-fields - -Wunused-packages + -Wunused-packages -Wno-unused-imports else ghc-options: -O2 -Wall @@ -102,7 +102,7 @@ test-suite tests build-depends: aeson >=2 && <3, base >=4.15 && <5, - containers >=0.5 && <0.7, + containers >=0.5 && <0.8, hspec >=2 && <3, hspec-megaparsec >=2 && <3, megaparsec >=7 && <10, @@ -126,7 +126,7 @@ test-suite mustache-spec aeson >=2 && <3, base >=4.15 && <5, bytestring >=0.10 && <0.13, - containers >=0.5 && <0.7, + containers >=0.5 && <0.8, file-embed, hspec >=2 && <3, megaparsec >=7 && <10,