From dce56f8cc8bd4bd55d28295c9855bf16ea8ec34f Mon Sep 17 00:00:00 2001 From: Ofek Lev Date: Tue, 22 Oct 2019 15:23:09 -0400 Subject: [PATCH] release 13.0.0 --- HISTORY.rst | 9 +++++++++ README.rst | 23 +++++++++-------------- setup.py | 4 ++-- 3 files changed, 20 insertions(+), 16 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index f0d3237..9c395bc 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,15 @@ Important changes are emphasized. master ^^^^^^ +13.0.0 +^^^^^^ + +- **New:** Binary wheels for Python 3.8! +- Support building on OpenBSD +- Improve handling of PEM private key deserialization +- Improve ECDH documentation +- Improvements from libsecp256k1 master + 12.0.0 ^^^^^^ diff --git a/README.rst b/README.rst index 2134225..18b1fbe 100644 --- a/README.rst +++ b/README.rst @@ -307,6 +307,15 @@ History Important changes are emphasized. +13.0.0 +^^^^^^ + +- **New:** Binary wheels for Python 3.8! +- Support building on OpenBSD +- Improve handling of PEM private key deserialization +- Improve ECDH documentation +- Improvements from libsecp256k1 master + 12.0.0 ^^^^^^ @@ -337,18 +346,4 @@ Important changes are emphasized. - Fixed wheels for macOS - **Breaking:** Drop support for 32-bit macOS -8.0.2 -^^^^^ - -- No longer package tests - -8.0.0 -^^^^^ - -- **New:** Binary wheels for Python 3.7! -- **Changed:** Binary wheels on macOS for Python 3.5 now use Homebrew - Python for compilation due to new security requirements -- Make build system support new GitHub & PyPI security requirements -- Improvements from libsecp256k1 master - View `all history `_ diff --git a/setup.py b/setup.py index cf15446..21c7ea6 100644 --- a/setup.py +++ b/setup.py @@ -249,7 +249,7 @@ else: setup( name='coincurve', - version='12.0.0', + version='13.0.0', description='Cross-platform Python CFFI bindings for libsecp256k1', long_description=open('README.rst', 'r').read(), @@ -259,7 +259,7 @@ setup( maintainer_email='ofekmeister@gmail.com', url='https://github.com/ofek/coincurve', download_url='https://github.com/ofek/coincurve', - license='MIT/Apache-2.0', + license='MIT or Apache-2.0', install_requires=['asn1crypto', 'cffi>=1.3.0'],