Skip to content

Commit

Permalink
Release version 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darosior committed Sep 7, 2024
1 parent b7d2aa4 commit db8257d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 4.0

This is a breaking release.

- Drop support for Python 3.7.
- Support Coincurve up to version 20.
- Drop base58 dependency. Port base58 code directly in-tree as a `base58` module.
- Fix circular dependency in source installation.
- A new method `get_fingerprint()` was added.


# 3.4

- Support Coincurve up to version 18. This version includes support for BIP340 x-only keys and
Expand Down
2 changes: 1 addition & 1 deletion bip32/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .bip32 import BIP32, PrivateDerivationError, InvalidInputError
from .utils import BIP32DerivationError, HARDENED_INDEX

__version__ = "3.4"
__version__ = "4.0"

__all__ = [
"BIP32",
Expand Down

0 comments on commit db8257d

Please sign in to comment.