Skip to content

Commit 00230f6

Browse files
committed
Bump version to 0.9.2
1 parent 14b5d45 commit 00230f6

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ installed.
112112
For non-development use, you can install wally with `pip` as follows:
113113

114114
```
115-
pip install wallycore==0.9.1
115+
pip install wallycore==0.9.2
116116
```
117117

118118
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
132132
using the released wheel files without having to compile the library, e.g.:
133133

134134
```
135-
pip install wallycore-0.9.1-cp39-cp39m-linux_x86_64.whl
135+
pip install wallycore-0.9.2-cp39-cp39m-linux_x86_64.whl
136136
```
137137

138138
The script `tools/build_python_manylinux_wheels.sh` builds the Linux release files

_CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.20)
22

33
project(
44
libwallycore
5-
VERSION 0.9.1
5+
VERSION 0.9.2
66
DESCRIPTION "A collection of useful primitives for cryptocurrency wallets"
77
LANGUAGES C
88
)

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ([2.60])
2-
AC_INIT([libwallycore],[0.9.1])
2+
AC_INIT([libwallycore],[0.9.2])
33
AC_CONFIG_AUX_DIR([tools/build-aux])
44
AC_CONFIG_MACRO_DIR([tools/build-aux/m4])
55
AC_CONFIG_SRCDIR([src/mnemonic.h])

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def extract_docs(infile, outfile):
167167
# built documents.
168168
#
169169
# The short X.Y version.
170-
version = u'0.9.1'
170+
version = u'0.9.2'
171171
# The full version, including alpha/beta/rc tags.
172172
release = version
173173

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def call(cmd):
9393

9494
kwargs = {
9595
'name': 'wallycore',
96-
'version': '0.9.1',
96+
'version': '0.9.2',
9797
'description': 'libwally Bitcoin library',
9898
'long_description': 'Python bindings for the libwally Bitcoin library',
9999
'url': 'https://github.com/ElementsProject/libwally-core',

src/wasm_package/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/wasm_package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wallycore",
3-
"version": "0.9.1",
3+
"version": "0.9.2",
44
"description": "JavaScript bindings for libwally",
55
"main": "src/index.js",
66
"type": "module",

0 commit comments

Comments
 (0)