Skip to content

Commit 71d08e5

Browse files
Support GHC 9.12. (#39)
2 parents a0300ba + e052fe8 commit 71d08e5

File tree

11 files changed

+18
-13
lines changed

11 files changed

+18
-13
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
- '9.6'
3535
- '9.8'
3636
- '9.10'
37+
- '9.12'
3738
exclude:
3839
# TODO: https://github.com/haskell-actions/setup/issues/77
3940
# To work around the above issue, we exclude the following versions:
@@ -116,7 +117,7 @@ jobs:
116117
if: |
117118
github.ref == 'refs/heads/main'
118119
&& matrix.os == 'ubuntu-latest'
119-
&& matrix.ghc == '9.10'
120+
&& matrix.ghc == '9.12'
120121
run: >
121122
mv ${{ env.cabal-build-dir }}/build/*/*/*/doc/html/* gh-pages
122123
@@ -126,7 +127,7 @@ jobs:
126127
if: |
127128
github.ref == 'refs/heads/main'
128129
&& matrix.os == 'ubuntu-latest'
129-
&& matrix.ghc == '9.10'
130+
&& matrix.ghc == '9.12'
130131
uses: JamesIves/github-pages-deploy-action@v4
131132
with:
132133
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.4
2+
3+
- Added support for GHC `9.12`.
4+
15
# 0.0.1.3
26

37
- Added support for GHC `9.10`.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright © 2022–2024 Jonathan Knowles
189+
Copyright © 2022–2025 Jonathan Knowles
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

quickcheck-groups.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
cabal-version: 3.0
22
name: quickcheck-groups
3-
version: 0.0.1.3
3+
version: 0.0.1.4
44
bug-reports: https://github.com/jonathanknowles/quickcheck-groups/issues
55
license: Apache-2.0
66
license-file: LICENSE
77
author: Jonathan Knowles
88
maintainer: mail@jonathanknowles.net
9-
copyright: 2022–2024 Jonathan Knowles
9+
copyright: 2022–2025 Jonathan Knowles
1010
category: Testing
1111
synopsis: Testing group class instances with QuickCheck
1212
description:
@@ -19,7 +19,7 @@ extra-doc-files:
1919
README.md
2020

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

src/internal/Internal.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- |
2-
-- Copyright: © 2022–2024 Jonathan Knowles
2+
-- Copyright: © 2022–2025 Jonathan Knowles
33
-- License: Apache-2.0
44
--
55
module Internal

src/internal/Internal/Semigroup/Eq.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- |
2-
-- Copyright: © 2022–2024 Jonathan Knowles
2+
-- Copyright: © 2022–2025 Jonathan Knowles
33
-- License: Apache-2.0
44
--
55
module Internal.Semigroup.Eq

src/internal/Internal/Semigroup/Tuple.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{- HLINT ignore "Redundant bracket" -}
44

55
-- |
6-
-- Copyright: © 2022–2024 Jonathan Knowles
6+
-- Copyright: © 2022–2025 Jonathan Knowles
77
-- License: Apache-2.0
88
--
99
module Internal.Semigroup.Tuple

src/prelude/Internal/Prelude.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- |
2-
-- Copyright: © 2022–2024 Jonathan Knowles
2+
-- Copyright: © 2022–2025 Jonathan Knowles
33
-- License: Apache-2.0
44
--
55
module Internal.Prelude

src/public/Test/QuickCheck/Classes/Group.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{- HLINT ignore "Redundant bracket" -}
33

44
-- |
5-
-- Copyright: © 2022–2024 Jonathan Knowles
5+
-- Copyright: © 2022–2025 Jonathan Knowles
66
-- License: Apache-2.0
77
--
88
-- This module provides 'Laws' definitions for classes exported by

src/test/ClassSpec.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{-# OPTIONS_GHC -fno-warn-orphans #-}
33

44
-- |
5-
-- Copyright: © 2022–2024 Jonathan Knowles
5+
-- Copyright: © 2022–2025 Jonathan Knowles
66
-- License: Apache-2.0
77
--
88
module ClassSpec where

0 commit comments

Comments
 (0)