Skip to content

Commit

Permalink
Support GHC 9.12. (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanknowles authored Jan 17, 2025
2 parents 355681b + 2d86821 commit 053a7ea
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
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.7

- Added support for GHC 9.12.

# 0.0.1.6

- Revised upper version bounds of dependencies.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright © 2022–2024 Jonathan Knowles
Copyright © 2022–2025 Jonathan Knowles

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
6 changes: 3 additions & 3 deletions quickcheck-quid.cabal
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
cabal-version: 3.0
name: quickcheck-quid
version: 0.0.1.6
version: 0.0.1.7
bug-reports: https://github.com/jonathanknowles/quickcheck-quid/issues
license: Apache-2.0
license-file: LICENSE
author: Jonathan Knowles
maintainer: [email protected]
copyright: 2022–2024 Jonathan Knowles
copyright: 2022–2025 Jonathan Knowles
category: Testing
synopsis: Quasi-unique identifiers for QuickCheck
description:
Expand All @@ -25,7 +25,7 @@ source-repository head
location: https://github.com/jonathanknowles/quickcheck-quid

common dependency-base
build-depends:base >= 4.14.3.0 && < 4.21
build-depends:base >= 4.14.3.0 && < 4.22
common dependency-containers
build-depends:containers >= 0.5.7.0 && < 0.8
common dependency-deepseq
Expand Down

0 comments on commit 053a7ea

Please sign in to comment.