Skip to content

Commit

Permalink
Bump version to 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jgriffiths committed Aug 30, 2023
1 parent 14b5d45 commit 00230f6
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
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.1
pip install wallycore==0.9.2
```

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.1-cp39-cp39m-linux_x86_64.whl
pip install wallycore-0.9.2-cp39-cp39m-linux_x86_64.whl
```

The script `tools/build_python_manylinux_wheels.sh` builds the Linux release files
Expand Down
2 changes: 1 addition & 1 deletion _CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.20)

project(
libwallycore
VERSION 0.9.1
VERSION 0.9.2
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.1])
AC_INIT([libwallycore],[0.9.2])
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.1'
version = u'0.9.2'
# 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.1',
'version': '0.9.2',
'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.1",
"version": "0.9.2",
"description": "JavaScript bindings for libwally",
"main": "src/index.js",
"type": "module",
Expand Down

0 comments on commit 00230f6

Please sign in to comment.