Skip to content

Commit

Permalink
Bump version to 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jgriffiths committed Jul 28, 2023
1 parent b90a05c commit 58595e8
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions _CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -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])
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions src/wasm_package/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/wasm_package/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 58595e8

Please sign in to comment.