Skip to content

Commit 9e962ff

Browse files
Support GHC 9.12. (#229)
2 parents 531e80d + 0dacba4 commit 9e962ff

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
@@ -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.2.1
2+
3+
- Added support for GHC 9.12.
4+
15
# 0.0.2.0
26

37
- Added the `fromSet` function to `MonoidMap`.

monoidmap.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: monoidmap
3-
version: 0.0.2.0
3+
version: 0.0.2.1
44
bug-reports: https://github.com/jonathanknowles/monoidmap/issues
55
license: Apache-2.0
66
license-file: LICENSE
@@ -17,7 +17,7 @@ extra-doc-files:
1717
README.md
1818

1919
common dependency-base
20-
build-depends:base >= 4.14.3.0 && < 4.21
20+
build-depends:base >= 4.14.3.0 && < 4.22
2121
common dependency-containers
2222
build-depends:containers >= 0.6.5.1 && < 0.8
2323
common dependency-deepseq

0 commit comments

Comments
 (0)