We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7d2aa4 commit db8257dCopy full SHA for db8257d
CHANGELOG.md
@@ -1,3 +1,14 @@
1
+# 4.0
2
+
3
+This is a breaking release.
4
5
+- Drop support for Python 3.7.
6
+- Support Coincurve up to version 20.
7
+- Drop base58 dependency. Port base58 code directly in-tree as a `base58` module.
8
+- Fix circular dependency in source installation.
9
+- A new method `get_fingerprint()` was added.
10
11
12
# 3.4
13
14
- Support Coincurve up to version 18. This version includes support for BIP340 x-only keys and
bip32/__init__.py
@@ -1,7 +1,7 @@
from .bip32 import BIP32, PrivateDerivationError, InvalidInputError
from .utils import BIP32DerivationError, HARDENED_INDEX
-__version__ = "3.4"
+__version__ = "4.0"
__all__ = [
"BIP32",
0 commit comments