Skip to content
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
20 changes: 6 additions & 14 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,18 @@ jobs:
- macOS-latest
- windows-latest
cabal:
- '3.10'
- '3.16'
ghc:
- '8.10'
- '9.0'
- '9.2'
- '9.4'
- '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:
- os: macOS-latest
ghc: '8.10'
- os: macOS-latest
ghc: '9.0'
- '9.14'
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Environment
uses: haskell-actions/setup@v2
Expand All @@ -69,7 +61,7 @@ jobs:
--builddir=${{ env.cabal-build-dir }}

- name: Cache
uses: actions/cache@v4
uses: actions/cache@v5
env:
hash: ${{ hashFiles('cabal.project.freeze') }}
with:
Expand Down Expand Up @@ -117,7 +109,7 @@ jobs:
if: |
github.ref == 'refs/heads/main'
&& matrix.os == 'ubuntu-latest'
&& matrix.ghc == '9.12'
&& matrix.ghc == '9.14'
run: >
mv ${{ env.cabal-build-dir }}/build/*/*/*/doc/html/* gh-pages

Expand All @@ -127,7 +119,7 @@ jobs:
if: |
github.ref == 'refs/heads/main'
&& matrix.os == 'ubuntu-latest'
&& matrix.ghc == '9.12'
&& matrix.ghc == '9.14'
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
Expand Down
31 changes: 0 additions & 31 deletions .github/workflows/style.yml

This file was deleted.

5 changes: 5 additions & 0 deletions bech32-th/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# ChangeLog for `bech32-th`

## [1.1.10] - 2026-01-30

- Added support for GHC 9.14 series.
- Revised upper version bounds for dependencies.

## [1.1.9] - 2025-06-05

- Revised upper version bounds for dependencies.
Expand Down
2 changes: 1 addition & 1 deletion 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.9
version: 1.1.10
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
5 changes: 5 additions & 0 deletions bech32/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

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

## [1.1.10] - 2026-01-30

- Added support for GHC 9.14 series.
- Revised upper version bounds for dependencies.

## [1.1.9] - 2025-06-05

- Revised upper version bounds for dependencies.
Expand Down
2 changes: 1 addition & 1 deletion 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.9
version: 1.1.10
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
8 changes: 0 additions & 8 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,3 @@ flags: +development

tests: True
test-show-details: direct

if impl (ghc >= 9.14)
allow-newer:
, primitive:base
, splitmix:base
, text:template-haskell
, vector:base
, vector-stream:base