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 68dcc1d commit 2e1f98b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 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
40 changes: 20 additions & 20 deletions mmark.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license: BSD-3-Clause
license-file: LICENSE.md
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/mmark-md/mmark
bug-reports: https://github.com/mmark-md/mmark/issues
synopsis: Strict markdown processor for writers
Expand Down Expand Up @@ -46,23 +46,23 @@ library
default-language: GHC2021
build-depends:
aeson >=0.11 && <3,
base >=4.15 && <5.0,
base >=4.15 && <5,
case-insensitive >=1.2 && <1.3,
containers >=0.5 && <0.7,
deepseq >=1.3 && <1.5,
dlist >=0.8 && <2.0,
deepseq >=1.3 && <1.6,
dlist >=0.8 && <2,
email-validate >=2.2 && <2.4,
foldl >=1.2 && <1.5,
hashable >=1 && <1.5,
html-entity-map >=0.1 && <0.2,
lucid >=2.9.13 && <3.0,
megaparsec >=8.0 && <10.0,
lucid >=2.9.13 && <3,
megaparsec >=8 && <10,
microlens >=0.4 && <0.5,
microlens-th >=0.4 && <0.5,
modern-uri >=0.3.4.4 && <0.4,
mtl >=2.0 && <3.0,
parser-combinators >=0.4 && <2.0,
text >=0.2 && <2.1,
mtl >=2 && <3,
parser-combinators >=0.4 && <2,
text >=0.2 && <2.2,
text-metrics >=0.3 && <0.4,
unordered-containers >=0.2.5 && <0.3

Expand Down Expand Up @@ -91,17 +91,17 @@ test-suite tests

default-language: GHC2021
build-depends:
QuickCheck >=2.4 && <3.0,
QuickCheck >=2.4 && <3,
aeson >=0.11 && <3,
base >=4.15 && <5.0,
base >=4.15 && <5,
foldl >=1.2 && <1.5,
hspec >=2.0 && <3.0,
hspec-megaparsec >=2.0 && <3.0,
lucid >=2.9.13 && <3.0,
megaparsec >=8.0 && <10.0,
hspec >=2 && <3,
hspec-megaparsec >=2 && <3,
lucid >=2.9.13 && <3,
megaparsec >=8 && <10,
mmark,
modern-uri >=0.3.4.4 && <0.4,
text >=0.2 && <2.1
text >=0.2 && <2.2

if flag(dev)
ghc-options:
Expand All @@ -120,10 +120,10 @@ benchmark bench-speed
hs-source-dirs: bench/speed
default-language: GHC2021
build-depends:
base >=4.15 && <5.0,
base >=4.15 && <5,
criterion >=0.6.2.1 && <1.7,
mmark,
text >=0.2 && <2.1
text >=0.2 && <2.2

if flag(dev)
ghc-options:
Expand All @@ -142,9 +142,9 @@ benchmark bench-memory
hs-source-dirs: bench/memory
default-language: GHC2021
build-depends:
base >=4.15 && <5.0,
base >=4.15 && <5,
mmark,
text >=0.2 && <2.1,
text >=0.2 && <2.2,
weigh >=0.0.4

if flag(dev)
Expand Down

0 comments on commit 2e1f98b

Please sign in to comment.