Skip to content

Commit 289ff8e

Browse files
committed
Release 0.1
Signed-off-by: Antoine Poinsot <darosior@protonmail.com>
1 parent ec63f9b commit 289ff8e

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## 0.1
2+
3+
- Started to use a changelog
4+
- New `InvalidInputError` raised instead of bluntly asserting on insane inputs
5+
- New `PrivateDerivationError` raised when trying to access private keys without private
6+
keys being set (eg for hardened derivation).
7+
- Bugfix: we can now parse "master paths": ie do `pubkey_from_path("m")` or
8+
`pubkey_from_path([])`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pip install bip32
3636

3737
### Dependencies
3838

39-
This uses [`coincurve`](https://github.com/ofek/coincurve) as a wrapper for [`libsecp256k1`](https://github.com/bitcoin-core/secp256k1), which you may have already installed anyway, for EC operations.
39+
This uses [`coincurve`](https://github.com/ofek/coincurve) as a wrapper for [`libsecp256k1`](https://github.com/bitcoin-core/secp256k1) for EC operations.
4040

4141
## Interface
4242

bip32/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .bip32 import BIP32, PrivateDerivationError, InvalidInputError
22
from .utils import BIP32DerivationError, HARDENED_INDEX
33

4-
__version__ = "0.0.8"
4+
__version__ = "0.1"
55

66
__all__ = [
77
"BIP32",

0 commit comments

Comments
 (0)