diff --git a/CHANGES.md b/CHANGES.md index c84448be9..28fc8df26 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Changes +## Version 0.7.4 + +- Add support for recoverable signatures +- Generalize Elements function to use external nonces +- Expose blinding key functions to js wrapper +- doc improvement and bugs fixing + ## Version 0.7.3 - Exposed ECDH, added py3.7 x86_64 linux wheels to released artifacts, updated diff --git a/README.md b/README.md index 12e75f015..35d38bf32 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.3-cp37-cp37m-linux_x86_64.whl +pip install wallycore-0.7.4-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 614a8ef16..ff27c45a8 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.3' +version = u'0.7.4' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index 29d102229..0a13a48ea 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ kwargs = { 'name': 'wallycore', - 'version': '0.7.3', + 'version': '0.7.4', 'description': 'libwally Bitcoin library', 'long_description': 'Python bindings for the libwally Bitcoin library', 'url': 'https://github.com/ElementsProject/libwally-core',