From 58595e887e04cc442eccfa5bf15c6585b66903b3 Mon Sep 17 00:00:00 2001 From: Jon Griffiths Date: Fri, 28 Jul 2023 13:39:09 +1200 Subject: [PATCH] Bump version to 0.9.1 --- CHANGES.md | 2 +- README.md | 4 ++-- _CMakeLists.txt | 4 ++-- configure.ac | 2 +- docs/source/conf.py | 2 +- setup.py | 2 +- src/wasm_package/package-lock.json | 4 ++-- src/wasm_package/package.json | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 4fbdd79f0..52f98e0da 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,7 +5,7 @@ converting a version 0 PSBT to version 2. - Fetching nested structures (e.g. witness stacks) from PSBTs where no structure is present now returns NULL without returning an error. -- Python: wheels are no longer released for deprecated versions 3.6/3.7. +- Python wheels are no longer released for deprecated versions 3.6/3.7. ## Version 0.9.0 - ABI: wally_descriptor_to_script_get_maximum_length has changed its arguments diff --git a/README.md b/README.md index baebf86c3..8479005c0 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ installed. For non-development use, you can install wally with `pip` as follows: ``` -pip install wallycore==0.9.0 +pip install wallycore==0.9.1 ``` For python development, you can build and install wally using: @@ -132,7 +132,7 @@ You can also install the binary [wally releases](https://github.com/ElementsProj using the released wheel files without having to compile the library, e.g.: ``` -pip install wallycore-0.9.0-cp39-cp39m-linux_x86_64.whl +pip install wallycore-0.9.1-cp39-cp39m-linux_x86_64.whl ``` The script `tools/build_python_manylinux_wheels.sh` builds the Linux release files diff --git a/_CMakeLists.txt b/_CMakeLists.txt index eebfdbb66..ce0e5c97a 100644 --- a/_CMakeLists.txt +++ b/_CMakeLists.txt @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 3.20) project( libwallycore - VERSION 0.9.0 - DESCRIPTION "collection of useful primitives for cryptocurrency wallets" + VERSION 0.9.1 + DESCRIPTION "A collection of useful primitives for cryptocurrency wallets" LANGUAGES C ) diff --git a/configure.ac b/configure.ac index 6a3f72962..9c3a46048 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.60]) -AC_INIT([libwallycore],[0.9.0]) +AC_INIT([libwallycore],[0.9.1]) AC_CONFIG_AUX_DIR([tools/build-aux]) AC_CONFIG_MACRO_DIR([tools/build-aux/m4]) AC_CONFIG_SRCDIR([src/mnemonic.h]) diff --git a/docs/source/conf.py b/docs/source/conf.py index 19ecf64b5..f36f6b2ee 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -167,7 +167,7 @@ def extract_docs(infile, outfile): # built documents. # # The short X.Y version. -version = u'0.9.0' +version = u'0.9.1' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index 677cdab70..a39d8f359 100644 --- a/setup.py +++ b/setup.py @@ -93,7 +93,7 @@ def call(cmd): kwargs = { 'name': 'wallycore', - 'version': '0.9.0', + 'version': '0.9.1', 'description': 'libwally Bitcoin library', 'long_description': 'Python bindings for the libwally Bitcoin library', 'url': 'https://github.com/ElementsProject/libwally-core', diff --git a/src/wasm_package/package-lock.json b/src/wasm_package/package-lock.json index 0841a4ed8..a0f501a66 100644 --- a/src/wasm_package/package-lock.json +++ b/src/wasm_package/package-lock.json @@ -1,12 +1,12 @@ { "name": "wallycore", - "version": "0.9.0", + "version": "0.9.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "wallycore", - "version": "0.9.0", + "version": "0.9.1", "license": "(MIT or BSD)", "devDependencies": { "buffer": "^6.0.3", diff --git a/src/wasm_package/package.json b/src/wasm_package/package.json index d47b6cb5c..0f48131f7 100644 --- a/src/wasm_package/package.json +++ b/src/wasm_package/package.json @@ -1,6 +1,6 @@ { "name": "wallycore", - "version": "0.9.0", + "version": "0.9.1", "description": "JavaScript bindings for libwally", "main": "src/index.js", "type": "module",