Skip to content

Commit

Permalink
Merge PR #43
Browse files Browse the repository at this point in the history
  • Loading branch information
darosior committed Sep 7, 2024
2 parents a2d1334 + db8257d commit 0a26152
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
coincurve_versions:
strategy:
matrix:
coincurve-version: [15, 16, 17]
coincurve-version: [15, 16, 17, 18, '19.0.1', 20]

runs-on: ubuntu-latest
steps:
Expand Down
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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
coincurve>=15.0,<19
coincurve>=15.0,<21

0 comments on commit 0a26152

Please sign in to comment.