Skip to content

Commit

Permalink
Expand base bounds so as to build with GHC 9.4.
Browse files Browse the repository at this point in the history
* Expand base bounds and build with GHC 9.4.
* Bump bounds in the test suite.
* Update tests to use latest patchlevel GHC release.
  • Loading branch information
jonathanlking authored and int-index committed Feb 5, 2023
1 parent 60224a2 commit e8e3cd5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ jobs:
- "8.4.4"
- "8.6.5"
- "8.8.4"
- "8.10.4"
- "8.10.7"
- "9.0.1"
- "9.2.1"
- "9.2.5"
- "9.4.4"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
* Bumped upper bounds for GHC 9.2 and older.
* Bumped upper bounds for GHC 9.4 and older.

## 0.3.0.1

Expand Down
6 changes: 3 additions & 3 deletions named.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ bug-reports: https://github.com/monadfix/named/issues
category: Control
build-type: Simple
extra-source-files: ChangeLog.md
tested-with: GHC ==8.0.2, GHC ==8.2.2, GHC ==8.4.4, GHC ==8.6.5, GHC ==8.8.1, GHC ==9.2.1
tested-with: GHC ==8.0.2, GHC ==8.2.2, GHC ==8.4.4, GHC ==8.6.5, GHC ==8.8.5, GHC ==9.2.5, GHC ==9.4.4
cabal-version: >=1.10

source-repository head
Expand All @@ -46,7 +46,7 @@ source-repository head

library
exposed-modules: Named, Named.Internal
build-depends: base >=4.9 && <4.17
build-depends: base >=4.9 && <4.18
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
Expand All @@ -56,7 +56,7 @@ test-suite regression
type: exitcode-stdio-1.0
main-is: Test.hs
other-modules: TestImport
build-depends: base >=4.9 && <4.17,
build-depends: base >=4.9 && <4.18,
named
hs-source-dirs: test
default-language: Haskell2010
Expand Down

0 comments on commit e8e3cd5

Please sign in to comment.