Skip to content

Commit 87f46a5

Browse files
committed
Merge branch 'release_0.1'
2 parents 8ab307c + 289ff8e commit 87f46a5

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.5, 3.6, 3.7, 3.8]
15+
python-version: [3.6, 3.7, 3.8, 3.9]
1616

1717
steps:
1818
- uses: actions/checkout@v2

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)