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 8f7884f commit 5dbb9f0Copy full SHA for 5dbb9f0
CHANGELOG.md
@@ -1,3 +1,13 @@
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
10
11
# 3.4
12
13
- 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