bip32

Pure Haskell BIP32 hierarchical deterministic wallets (docs.ppad.tech/bip32).
git clone git://git.ppad.tech/bip32.git
Log | Files | Refs | README | LICENSE

commit 08229eed913e09d5ab77021906bdbd3148409d57
parent 8c405b27baf26801cf445caa762f4f943f48e678
Author: Jared Tobin <jared@jtobin.io>
Date:   Sun, 28 Dec 2025 12:59:22 -0330

release: v0.3.2

Diffstat:
MCHANGELOG | 3+++
Mflake.lock | 8++++----
Mppad-bip32.cabal | 14+++++++-------
3 files changed, 14 insertions(+), 11 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG @@ -1,5 +1,8 @@ # Changelog +- 0.3.2 (2025-12-28) + * Upgrades to newer dependencies and tests with GHC 9.10.3. + - 0.3.1 (2025-12-27) * Upgrades to ppad-fixed v0.1.2 and ppad-secp256k1 v0.5.1. diff --git a/flake.lock b/flake.lock @@ -88,11 +88,11 @@ ] }, "locked": { - "lastModified": 1766446326, - "narHash": "sha256-4uqWsys2juR70nainA6ykVVLmnbVO2nGk2DilIPlYdo=", + "lastModified": 1766936673, + "narHash": "sha256-OWxKSeRQ0+Wt+Qy62ygGiCNY/1OsejuOnUCLlozIzuM=", "ref": "master", - "rev": "9aec2633bffce9944bb9647b58abe5072e5834a8", - "revCount": 30, + "rev": "8de88f527e0c87264aecae4f4f0d13c524abf726", + "revCount": 31, "type": "git", "url": "git://git.ppad.tech/base58.git" }, diff --git a/ppad-bip32.cabal b/ppad-bip32.cabal @@ -1,6 +1,6 @@ cabal-version: 3.0 name: ppad-bip32 -version: 0.3.1 +version: 0.3.2 synopsis: BIP32 hierarchical deterministic wallets. license: MIT license-file: LICENSE @@ -36,12 +36,12 @@ library build-depends: base >= 4.9 && < 5 , bytestring >= 0.9 && < 0.13 - , ppad-base58 >= 0.2 && < 0.3 - , ppad-fixed >= 0.1.2 && < 0.2 - , ppad-ripemd160 >= 0.1.3 && < 0.2 - , ppad-secp256k1 >= 0.5.1 && < 0.6 - , ppad-sha256 >= 0.2.3 && < 0.3 - , ppad-sha512 >= 0.1.3 && < 0.2 + , ppad-base58 >= 0.2.2 && < 0.3 + , ppad-fixed >= 0.1.3 && < 0.2 + , ppad-ripemd160 >= 0.1.4 && < 0.2 + , ppad-secp256k1 >= 0.5.2 && < 0.6 + , ppad-sha256 >= 0.2.4 && < 0.3 + , ppad-sha512 >= 0.1.4 && < 0.2 test-suite bip32-tests type: exitcode-stdio-1.0