chore: bump version to v1.1.0

This commit is contained in:
LC mac
2026-01-09 19:30:10 +08:00
parent 109829f1f5
commit a6c84f81ee
3 changed files with 13 additions and 13 deletions

View File

@@ -1,4 +1,4 @@
# pyhdwallet v1.0.6 (hdwalletpy)
# pyhdwallet v1.1.0 (hdwalletpy)
A command-line tool for generating and recovering HD wallets (BIP39) with support for Ethereum, Solana, and Bitcoin. It is designed for offline operation, optional PGP encryption, and writing deterministic AES-encrypted ZIP "wallet artifacts" into a local `.wallet/` folder.
@@ -326,7 +326,7 @@ Naming uses UTC timestamps (e.g. `20260108_011830Z`):
## Commands
### gen-child (offline) - **NEW in v1.0.6**
### gen-child (offline) - **NEW in v1.1.0**
Derive a child BIP39 mnemonic from a master mnemonic using BIP85 deterministic entropy.
@@ -387,7 +387,7 @@ m/83696968'/39'/0'/{words}'/{index}'
- `83696968'` — BIP85 magic constant
- `39'` — BIP39 application
- `0'` — English language (only supported language in v1.0.6)
- `0'` — English language (only supported language in v1.1.0)
- `{words}'` — Child mnemonic word count (12/15/18/21/24)
- `{index}'` — Your chosen index
@@ -444,7 +444,7 @@ When using `--file`, the encrypted ZIP contains a JSON payload with:
```json
{
"version": "pyhdwallet v1.0.6",
"version": "pyhdwallet v1.1.0",
"purpose": "BIP85 derived child mnemonic",
"master_fingerprint": "ABCD1234",
"master_word_count": 24,
@@ -895,7 +895,7 @@ python src/pyhdwallet.py test
## Changelog
- **v1.0.6** (2026-01-09)
- **v1.1.0** (2026-01-09)
- **Added**: BIP85 child mnemonic derivation via new `gen-child` command
- Supports deriving 12/15/18/21/24-word children from master seed
- Optional master BIP39 passphrase support