From 01503bf18b7c2b00f84c653815b38e8aa18026b0 Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Fri, 23 Feb 2024 01:36:44 +0000 Subject: [PATCH 1/2] Bump package versions of `{bech32,bech32-th}` to `1.1.5`. For simplicity, we bump both packages to the same new version number. --- bech32-th/bech32-th.cabal | 4 ++-- bech32/bech32.cabal | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bech32-th/bech32-th.cabal b/bech32-th/bech32-th.cabal index 7c5e9c0..2f20410 100644 --- a/bech32-th/bech32-th.cabal +++ b/bech32-th/bech32-th.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: bech32-th -version: 1.1.1 +version: 1.1.5 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 @@ -30,7 +30,7 @@ flag release common dependency-base build-depends:base >= 4.14.3.0 && < 4.20 common dependency-bech32 - build-depends:bech32 >= 1.1.4 && < 1.2 + build-depends:bech32 >= 1.1.5 && < 1.2 common dependency-hspec build-depends:hspec >= 2.11.7 && < 2.12 common dependency-template-haskell diff --git a/bech32/bech32.cabal b/bech32/bech32.cabal index ef2f093..e874d84 100644 --- a/bech32/bech32.cabal +++ b/bech32/bech32.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: bech32 -version: 1.1.4 +version: 1.1.5 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. From 45613899718d99185805330bdbe0498162e22fcd Mon Sep 17 00:00:00 2001 From: Jonathan Knowles Date: Fri, 23 Feb 2024 02:05:22 +0000 Subject: [PATCH 2/2] Add entries to `ChangeLog.md` files. --- bech32-th/ChangeLog.md | 10 ++++++++++ bech32/ChangeLog.md | 11 +++++++++++ 2 files changed, 21 insertions(+) diff --git a/bech32-th/ChangeLog.md b/bech32-th/ChangeLog.md index 6bf7ee4..0db81a2 100644 --- a/bech32-th/ChangeLog.md +++ b/bech32-th/ChangeLog.md @@ -1,5 +1,15 @@ # ChangeLog for `bech32-th` +## [1.1.5] - 2024-02-23 + +### Fixed + +- Specified version bounds for all package dependencies. + +### Added + +- Added support for GHC 9.8 series. + ## 1.1.1 -- 2021-06-11 + Upgraded CI to build with Cabal 3.4.0.0 and GHC 8.10.4. diff --git a/bech32/ChangeLog.md b/bech32/ChangeLog.md index 17b20aa..36464ee 100644 --- a/bech32/ChangeLog.md +++ b/bech32/ChangeLog.md @@ -1,6 +1,17 @@ # Changelog + +## [1.1.5] - 2024-02-23 + +### Fixed + +- Specified version bounds for all package dependencies. + +### Added + +- Added support for GHC 9.8 series. + ## [1.1.4] - 2023-07-28 ### Fixed