Skip to content

Commit

Permalink
Bump dependencies and CI for GHC 9.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasabel committed Oct 24, 2023
1 parent e21d5ea commit 1205a78
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 20 deletions.
27 changes: 17 additions & 10 deletions .github/workflows/packcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,10 @@ jobs:
fail-fast: false
matrix:
name:
- 9.6.1
- 9.4.4
- 9.2.7
- 9.8.1
- 9.6.3
- 9.4.7
- 9.2.8
- 9.0.2
- 8.10.7
- 8.10.7+stack
Expand All @@ -98,20 +99,26 @@ jobs:
- 8.2.2
- 8.0.2
include:
- name: 9.6.1
ghc-version: 9.6.1
- name: 9.8.1
ghc-version: 9.8.1
command: cabal-v2
runner: ubuntu-latest
cabal-version: 3.10.1.0

- name: 9.4.4
ghc-version: 9.4.4
- name: 9.6.3
ghc-version: 9.6.3
command: cabal-v2
runner: ubuntu-latest
cabal-version: 3.10.1.0

- name: 9.4.7
ghc-version: 9.4.7
command: cabal-v2
runner: ubuntu-latest
cabal-version: 3.8.1.0

- name: 9.2.7
ghc-version: 9.2.7
- name: 9.2.8
ghc-version: 9.2.8
command: cabal-v2
runner: ubuntu-latest
cabal-version: 3.6
Expand Down Expand Up @@ -176,7 +183,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: haskell/actions/setup@v2
- uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc-version }}
cabal-version: ${{ matrix.cabal-version }}
Expand Down
22 changes: 12 additions & 10 deletions unicode-transforms.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ tested-with: GHC==8.0.2
, GHC==8.8.4
, GHC==8.10.7
, GHC==9.0.2
, GHC==9.2.7
, GHC==9.4.4
, GHC==9.2.8
, GHC==9.4.7
, GHC==9.6.3
, GHC==9.8.1
build-type: Simple
extra-source-files:
Changelog.md
Expand Down Expand Up @@ -83,14 +85,14 @@ library
hs-source-dirs: .
ghc-options: -Wall -fwarn-identities -fwarn-incomplete-record-updates -fwarn-incomplete-uni-patterns -fwarn-tabs
build-depends:
base >= 4.8 && < 4.19
base >= 4.8 && < 4.20
, unicode-data >= 0.2 && < 0.5
, bytestring >= 0.9 && < 0.12
, ghc-prim >= 0.2 && < 0.11
, bytestring >= 0.9 && < 0.13
, ghc-prim >= 0.2 && < 0.12

-- We depend on a lot of internal modules in text. We keep the upper bound
-- inclusive of the latest stable version.
, text >=1.1.1 && <=1.2.5.0 || >=2.0 && <2.1
, text >=1.1.1 && <=1.2.5.0 || >=2.0 && <2.2
if flag(dev)
ghc-options: -O0
else
Expand All @@ -110,7 +112,7 @@ test-suite extras
build-depends:
QuickCheck >=2.1 && <2.15
, base
, deepseq >=1.1 && <1.5
, deepseq >=1.1 && <1.6
, text
, unicode-transforms
if flag(dev)
Expand Down Expand Up @@ -179,8 +181,8 @@ benchmark bench
base
, deepseq
, filepath >=1.0 && <2
, path >=0.0.0 && <0.9
, path-io >=0.1.0 && <1.7
, path >=0.0.0 && <0.10
, path-io >=0.1.0 && <1.9
, text
, unicode-transforms
if flag(use-gauge)
Expand Down Expand Up @@ -213,6 +215,6 @@ executable chart
base
, bench-show >= 0.3 && < 0.4
, split
, transformers >= 0.4 && < 0.6
, transformers >= 0.4 && < 0.7
else
buildable: False

0 comments on commit 1205a78

Please sign in to comment.