Skip to content

Commit fa7a475

Browse files
committed
bip32: major version bump
Signed-off-by: Antoine Poinsot <darosior@protonmail.com>
1 parent 3da4fb6 commit fa7a475

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
## Next
1+
## 1.0
22

33
- Added test vector #4 for private keys with leading zeros (see https://github.com/bitcoin/bips/pull/1030)
4+
- (**Breaking**) Bumped Coincurve dependency to `0.15`
5+
- Re-arranged the 2 dependencies to use "compatible release" notation
46

57
## 0.1
68

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.1"
4+
__version__ = "1.0"
55

66
__all__ = [
77
"BIP32",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setup(name="bip32",
1313
version=bip32.__version__,
14-
description="Python implementation of the BIP32 key derivation scheme",
14+
description="Minimalistic implementation of the BIP32 key derivation scheme",
1515
long_description=long_description,
1616
long_description_content_type="text/markdown",
1717
url="http://github.com/darosior/python-bip32",

0 commit comments

Comments
 (0)