Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support GHC 9.12. #39

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
- '9.6'
- '9.8'
- '9.10'
- '9.12'
exclude:
# TODO: https://github.com/haskell-actions/setup/issues/77
# To work around the above issue, we exclude the following versions:
Expand Down Expand Up @@ -116,7 +117,7 @@ jobs:
if: |
github.ref == 'refs/heads/main'
&& matrix.os == 'ubuntu-latest'
&& matrix.ghc == '9.10'
&& matrix.ghc == '9.12'
run: >
mv ${{ env.cabal-build-dir }}/build/*/*/*/doc/html/* gh-pages

Expand All @@ -126,7 +127,7 @@ jobs:
if: |
github.ref == 'refs/heads/main'
&& matrix.os == 'ubuntu-latest'
&& matrix.ghc == '9.10'
&& matrix.ghc == '9.12'
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.0.1.4

- Added support for GHC `9.12`.

# 0.0.1.3

- Added support for GHC `9.10`.
Expand Down
2 changes: 2 additions & 0 deletions cabal.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
packages: ./*.cabal
constraints: quickcheck-classes -aeson
4 changes: 2 additions & 2 deletions quickcheck-groups.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: quickcheck-groups
version: 0.0.1.3
version: 0.0.1.4
bug-reports: https://github.com/jonathanknowles/quickcheck-groups/issues
license: Apache-2.0
license-file: LICENSE
Expand All @@ -19,7 +19,7 @@ extra-doc-files:
README.md

common dependency-base
build-depends:base >= 4.14.3.0 && < 4.21
build-depends:base >= 4.14.3.0 && < 4.22
common dependency-hspec
build-depends:hspec >= 2.10.7 && < 2.12
common dependency-groups
Expand Down
Loading