Skip to content

Commit a0300ba

Browse files
Support GHC 9.10. (#37)
2 parents 9a8939e + 19258a5 commit a0300ba

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
- '9.4'
3434
- '9.6'
3535
- '9.8'
36+
- '9.10'
3637
exclude:
3738
# TODO: https://github.com/haskell-actions/setup/issues/77
3839
# To work around the above issue, we exclude the following versions:
@@ -115,7 +116,7 @@ jobs:
115116
if: |
116117
github.ref == 'refs/heads/main'
117118
&& matrix.os == 'ubuntu-latest'
118-
&& matrix.ghc == '9.8'
119+
&& matrix.ghc == '9.10'
119120
run: >
120121
mv ${{ env.cabal-build-dir }}/build/*/*/*/doc/html/* gh-pages
121122
@@ -125,7 +126,7 @@ jobs:
125126
if: |
126127
github.ref == 'refs/heads/main'
127128
&& matrix.os == 'ubuntu-latest'
128-
&& matrix.ghc == '9.8'
129+
&& matrix.ghc == '9.10'
129130
uses: JamesIves/github-pages-deploy-action@v4
130131
with:
131132
branch: gh-pages

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.0.1.3
2+
3+
- Added support for GHC `9.10`.
4+
15
# 0.0.1.2
26

37
- Bumped upper version bounds of dependencies.

quickcheck-groups.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: quickcheck-groups
3-
version: 0.0.1.2
3+
version: 0.0.1.3
44
bug-reports: https://github.com/jonathanknowles/quickcheck-groups/issues
55
license: Apache-2.0
66
license-file: LICENSE
@@ -19,7 +19,7 @@ extra-doc-files:
1919
README.md
2020

2121
common dependency-base
22-
build-depends:base >= 4.14.3.0 && < 4.20
22+
build-depends:base >= 4.14.3.0 && < 4.21
2323
common dependency-hspec
2424
build-depends:hspec >= 2.10.7 && < 2.12
2525
common dependency-groups

0 commit comments

Comments
 (0)