From e5d930ed2133b05d916bdced3cee391b3065cc67 Mon Sep 17 00:00:00 2001 From: meherett Date: Sun, 15 Dec 2024 14:12:36 +0300 Subject: [PATCH] Bump: Python-HDWallet into v3.2.0 package --- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 2 +- hdwallet/info.py | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 66ec87e..7c1c3ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [v3.2.0](https://github.com/talonlab/python-hdwallet/tree/v3.2.0) (2024-12-15) + +[Full Changelog](https://github.com/talonlab/python-hdwallet/compare/v3.1.0...v3.2.0) + +**Improvements:** + +- Modify default address assignment to align with HD wallet standards and semantic configurations. +- Set default Electrum V1 and V2 HD's wif_prefix into `Bitcoin.NETWORKS.MAINNET.WIF_PREFIX` + +**Fix Bugs:** + +- Fix: WIF value return funcs of BIP32, Electrum-V1 & Electrum-V2 HD's +- Fix: Tezos address return function + +**Closed issues:** + +- Fix: use default HD class issue #107 + ## [v3.1.0](https://github.com/talonlab/python-hdwallet/tree/v3.1.0) (2024-12-13) [Full Changelog](https://github.com/talonlab/python-hdwallet/compare/v3.0.1...v3.1.0) diff --git a/README.md b/README.md index 14d0f2d..b464568 100644 --- a/README.md +++ b/README.md @@ -491,7 +491,7 @@ This library simplifies the process of creating a new Hierarchical Deterministic ## Donations -If you found this tool useful, consider supporting its development with a donation and help this repository gain more ⭐! +If this tool was helpful, support its development with a donation or a ⭐! - **Bitcoin** - 16c7ajUwHEMaafrceuYSrd35SDjmfVdjoS - **Ethereum / ERC20** - 0xD3cbCB0B6F82A03C715D665b72dC44CEf54e6D9B diff --git a/hdwallet/info.py b/hdwallet/info.py index 5fc921c..8844ab8 100644 --- a/hdwallet/info.py +++ b/hdwallet/info.py @@ -7,7 +7,7 @@ from typing import List __name__: str = "hdwallet" -__version__: str = "v3.1.0" +__version__: str = "v3.2.0" __license__: str = "MIT" __author__: str = "Meheret Tesfaye Batu" __email__: str = "meherett.batu@gmail.com"