Skip to content

Commit

Permalink
Test with GHC 9.8.1, drop 9.2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkkrp committed Oct 26, 2023
1 parent 92228e5 commit e8fc694
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
strategy:
matrix:
cabal: ["3.10"]
ghc: ["9.2.8", "9.4.7", "9.6.2"]
ghc: ["9.4.7", "9.6.3", "9.8.1"]
env:
CONFIG: "--enable-tests --enable-benchmarks --flags=dev"
steps:
- uses: actions/checkout@v4
- uses: haskell/actions/setup@v2
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
with:
ghc-version: ${{ matrix.ghc }}
Expand Down
48 changes: 24 additions & 24 deletions stache.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license: MIT
license-file: LICENSE
maintainer: Mark Karpov <[email protected]>
author: Mark Karpov <[email protected]>
tested-with: ghc ==9.2.8 ghc ==9.4.7 ghc ==9.6.2
tested-with: ghc ==9.4.7 ghc ==9.6.3 ghc ==9.8.1
homepage: https://github.com/stackbuilders/stache
bug-reports: https://github.com/stackbuilders/stache/issues
synopsis: Mustache templates for Haskell
Expand Down Expand Up @@ -44,15 +44,15 @@ library
default-language: GHC2021
build-depends:
aeson >=2 && <3,
base >=4.15 && <5.0,
base >=4.15 && <5,
containers >=0.5 && <0.7,
deepseq >=1.4 && <1.5,
deepseq >=1.4 && <1.6,
directory >=1.2 && <1.4,
filepath >=1.2 && <1.5,
megaparsec >=7.0 && <10.0,
mtl >=2.1 && <3.0,
template-haskell >=2.11 && <2.21,
text >=1.2 && <2.1,
megaparsec >=7 && <10,
mtl >=2.1 && <3,
template-haskell >=2.11 && <2.22,
text >=1.2 && <2.2,
vector >=0.11 && <0.14

if flag(dev)
Expand All @@ -71,11 +71,11 @@ executable stache
default-language: GHC2021
build-depends:
aeson >=2 && <3,
base >=4.15 && <5.0,
base >=4.15 && <5,
gitrev >=1.3 && <1.4,
optparse-applicative >=0.14 && <0.19,
stache,
text >=0.2 && <2.1,
text >=0.2 && <2.2,
yaml >=0.8 && <0.12,
filepath >=1.2 && <1.5

Expand All @@ -90,7 +90,7 @@ executable stache
test-suite tests
type: exitcode-stdio-1.0
main-is: Spec.hs
build-tool-depends: hspec-discover:hspec-discover >=2.0 && <3.0
build-tool-depends: hspec-discover:hspec-discover >=2 && <3
hs-source-dirs: tests
other-modules:
Text.Mustache.Compile.THSpec
Expand All @@ -101,13 +101,13 @@ test-suite tests
default-language: GHC2021
build-depends:
aeson >=2 && <3,
base >=4.15 && <5.0,
base >=4.15 && <5,
containers >=0.5 && <0.7,
hspec >=2.0 && <3.0,
hspec-megaparsec >=2.0 && <3.0,
megaparsec >=7.0 && <10.0,
hspec >=2 && <3,
hspec-megaparsec >=2 && <3,
megaparsec >=7 && <10,
stache,
text >=1.2 && <2.1
text >=1.2 && <2.2

if flag(dev)
ghc-options:
Expand All @@ -124,14 +124,14 @@ test-suite mustache-spec
default-language: GHC2021
build-depends:
aeson >=2 && <3,
base >=4.15 && <5.0,
bytestring >=0.10 && <0.12,
base >=4.15 && <5,
bytestring >=0.10 && <0.13,
containers >=0.5 && <0.7,
file-embed,
hspec >=2.0 && <3.0,
megaparsec >=7.0 && <10.0,
hspec >=2 && <3,
megaparsec >=7 && <10,
stache,
text >=1.2 && <2.1,
text >=1.2 && <2.2,
yaml >=0.8 && <0.12

if flag(dev)
Expand All @@ -149,12 +149,12 @@ benchmark bench
default-language: GHC2021
build-depends:
aeson >=2 && <3,
base >=4.15 && <5.0,
base >=4.15 && <5,
criterion >=0.6.2.1 && <1.7,
deepseq >=1.4 && <1.5,
megaparsec >=7.0 && <10.0,
deepseq >=1.4 && <1.6,
megaparsec >=7 && <10,
stache,
text >=1.2 && <2.1
text >=1.2 && <2.2

if flag(dev)
ghc-options:
Expand Down

0 comments on commit e8fc694

Please sign in to comment.