diff --git a/HISTORY.rst b/HISTORY.rst index 9c395bc..e221efa 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,16 @@ Important changes are emphasized. master ^^^^^^ +14.0.0 +^^^^^^ + +**IMPORTANT: This will be the final release that supports Python 2.** + +- **New:** Binary wheels for Python 3.9! +- Fetch libsecp256k1 source if the system installation lacks ECDH support +- Fix innocuous ``setuptools`` warning when building from source +- Switch CI/CD to GitHub Actions + 13.0.0 ^^^^^^ diff --git a/README.rst b/README.rst index 7b0a58d..a43a54a 100644 --- a/README.rst +++ b/README.rst @@ -307,6 +307,16 @@ History Important changes are emphasized. +14.0.0 +^^^^^^ + +**IMPORTANT: This will be the final release that supports Python 2.** + +- **New:** Binary wheels for Python 3.9! +- Fetch libsecp256k1 source if the system installation lacks ECDH support +- Fix innocuous ``setuptools`` warning when building from source +- Switch CI/CD to GitHub Actions + 13.0.0 ^^^^^^ diff --git a/setup.py b/setup.py index 1dd4dae..1e18e36 100644 --- a/setup.py +++ b/setup.py @@ -253,7 +253,7 @@ else: setup( name='coincurve', - version='13.0.0', + version='14.0.0', description='Cross-platform Python CFFI bindings for libsecp256k1', long_description=open('README.rst', 'r').read(),