Browse Source

release 13.0.0

anonswap 13.0.0
Ofek Lev 5 years ago
parent
commit
dce56f8cc8
  1. 9
      HISTORY.rst
  2. 23
      README.rst
  3. 4
      setup.py

9
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
^^^^^^

23
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 <https://github.com/ofek/coincurve/blob/master/HISTORY.rst>`_

4
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'],

Loading…
Cancel
Save