From 45db547bdf5a5bc19a8c55ef447dbf9169928792 Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Thu, 13 Nov 2025 13:41:58 -0500 Subject: [PATCH 1/2] Upgrade maximum supported Coincurve version to 21 Thanks to Ofek Lev for the original PR to upgrade to the latest Coincurve: https://github.com/darosior/python-bip32/pull/47 Co-Authored-By: Ofek Lev --- .github/workflows/python-package.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 6ee9d2b..e8aaca7 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -50,7 +50,7 @@ jobs: coincurve_versions: strategy: matrix: - coincurve-version: [15, 16, 17, 18, '19.0.1', 20] + coincurve-version: [15, 16, 17, 18, '19.0.1', 20, 21] runs-on: ubuntu-latest steps: diff --git a/pyproject.toml b/pyproject.toml index dcd6bc9..ea80fa7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "bip32" version = "5.0.0" dependencies = [ - "coincurve>=15.0,<21", + "coincurve>=15.0,<22", ] requires-python = ">=3.9" authors = [ From 7817553deb36bd5bcdec2ca108bbe4822fb07112 Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Thu, 13 Nov 2025 14:02:40 -0500 Subject: [PATCH 2/2] Release 5.1 To make the Coincurve bump available. --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63cb7f8..a209856 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 5.1 + +- Support Coincurve up to version 21. This version notably bumps libsecp to version 0.6.0 and gets rid of all runtime dependencies. + # 5.0 This is a breaking release. diff --git a/pyproject.toml b/pyproject.toml index ea80fa7..992632e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "bip32" -version = "5.0.0" +version = "5.1.0" dependencies = [ "coincurve>=15.0,<22", ]