From c5f1a2e8561b317aa53ffe42c6266b7f280452c3 Mon Sep 17 00:00:00 2001 From: Lawrence Nahum Date: Thu, 18 Jul 2019 15:38:17 +0200 Subject: [PATCH] bump version to 0.7.3 --- CHANGES.md | 5 +++++ README.md | 2 +- docs/source/conf.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 481b49dc3..c84448be9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Changes +## Version 0.7.3 + +- Exposed ECDH, added py3.7 x86_64 linux wheels to released artifacts, updated + JS bindings to support latest nodejs, doc typos and bug fixing. + ## Version 0.7.2 - API change of wally_tx_to_bytes and wally_tx_to_hex to not accept diff --git a/README.md b/README.md index b95879921..12e75f015 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ You can also install the binary wally releases using the released wheel files without having to compile the library, e.g.: ``` -pip install wallycore-0.7.2-cp27-cp27mu-linux_x86_64.whl +pip install wallycore-0.7.3-cp37-cp37m-linux_x86_64.whl ``` The script `tools/build_python_wheels.sh` builds the release files and can be diff --git a/docs/source/conf.py b/docs/source/conf.py index f64e44ef7..614a8ef16 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -94,7 +94,7 @@ def extract_docs(infile, outfile): # built documents. # # The short X.Y version. -version = u'0.7.2' +version = u'0.7.3' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index f5028add2..29d102229 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ kwargs = { 'name': 'wallycore', - 'version': '0.7.2', + 'version': '0.7.3', 'description': 'libwally Bitcoin library', 'long_description': 'Python bindings for the libwally Bitcoin library', 'url': 'https://github.com/ElementsProject/libwally-core',