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. #80

Merged
Merged
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/IntersectMBO/bech32/issues/72
# 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 bech32-th/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog for `bech32-th`

## [1.1.8] - 2024-12-27

- Added support for GHC 9.12 series.

## [1.1.7] - 2024-05-20

- Added support for GHC 9.10 series.
Expand Down
6 changes: 3 additions & 3 deletions bech32-th/bech32-th.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: bech32-th
version: 1.1.7
version: 1.1.8
synopsis: Template Haskell extensions to the Bech32 library.
description: Template Haskell extensions to the Bech32 library, including
quasi-quoters for compile-time checking of Bech32 string
Expand Down Expand Up @@ -28,13 +28,13 @@ flag release
manual: True

common dependency-base
build-depends:base >= 4.14.3.0 && < 4.21
build-depends:base >= 4.14.3.0 && < 4.22
common dependency-bech32
build-depends:bech32 >= 1.1.7 && < 1.2
common dependency-hspec
build-depends:hspec >= 2.11.7 && < 2.12
common dependency-template-haskell
build-depends:template-haskell >= 2.16.0.0 && < 2.23
build-depends:template-haskell >= 2.16.0.0 && < 2.24
common dependency-text
build-depends:text >= 1.2.4.1 && < 2.2

Expand Down
4 changes: 4 additions & 0 deletions bech32/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

<!-- This ChangeLog follows a format specified by: https://keepachangelog.com/en/1.0.0/ -->

## [1.1.8] - 2024-12-27

- Added support for GHC 9.12 series.

## [1.1.7] - 2024-05-20

- Added support for GHC 9.10 series.
Expand Down
6 changes: 3 additions & 3 deletions bech32/bech32.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: bech32
version: 1.1.7
version: 1.1.8
synopsis: Implementation of the Bech32 cryptocurrency address format (BIP 0173).
description: Implementation of the Bech32 cryptocurrency address format documented in the
BIP (Bitcoin Improvement Proposal) 0173.
Expand Down Expand Up @@ -34,7 +34,7 @@ flag static
common dependency-array
build-depends:array >= 0.5.4.0 && < 0.6
common dependency-base
build-depends:base >= 4.14.3.0 && < 4.21
build-depends:base >= 4.14.3.0 && < 4.22
common dependency-base58-bytestring
build-depends:base58-bytestring >= 0.1.0 && < 0.2
common dependency-bytestring
Expand All @@ -44,7 +44,7 @@ common dependency-containers
common dependency-deepseq
build-depends:deepseq >= 1.4.4.0 && < 1.6
common dependency-extra
build-depends:extra >= 1.7.14 && < 1.8
build-depends:extra >= 1.7.14 && < 1.9
common dependency-hspec
build-depends:hspec >= 2.11.7 && < 2.12
common dependency-memory
Expand Down
Loading