Skip to content

Commit

Permalink
Bump version to 0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jgriffiths committed Nov 29, 2022
1 parent 8525f7b commit 38b85bf
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Changes

## Version 0.8.7
- Javascript: Add a new WASM-based JS + typescript wrapper for Node and
browsers. This now supports the entire wally API and builds to an npm module.
- Javascript: The old JS wrappers are now deprecated and will be removed
in the next release. Please report any issues with the replacement wrapper.
- psbt_extract now takes an extra flags parameter. The Java and Python
wrappers default this to zero for backwards compatibility.
- bip39_mnemonic_to_seed is no longer available for SWIG-wrapped languages.
Callers should use bip39_mnemonic_to_seed512 instead.
- Python: Remove support for Python 2.x.
- Python: The Python wrappers are now automatically generated. Please ensure
you thoroughly test your Python code after upgrading.
- Python: Some calls (e.g. bip39_mnemonic_to_seed512, aes, and aes_cbc) used
to take output buffers to fill and return the number of bytes written. These
calls now automatically create and fill thier buffer, returning it as the
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ installed.
For non-development use, you can install wally with `pip` as follows:

```
pip install wallycore==0.8.6
pip install wallycore==0.8.7
```

For python development, you can build and install wally using:
Expand All @@ -129,7 +129,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.8.6-cp39-cp39m-linux_x86_64.whl
pip install wallycore-0.8.7-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 configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ([2.60])
AC_INIT([libwallycore],[0.8.6])
AC_INIT([libwallycore],[0.8.7])
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 @@ -143,7 +143,7 @@ def extract_docs(infile, outfile):
# built documents.
#
# The short X.Y version.
version = u'0.8.6'
version = u'0.8.7'
# 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 @@ -94,7 +94,7 @@ def call(cmd):

kwargs = {
'name': 'wallycore',
'version': '0.8.6',
'version': '0.8.7',
'description': 'libwally Bitcoin library',
'long_description': 'Python bindings for the libwally Bitcoin library',
'url': 'https://github.com/ElementsProject/libwally-core',
Expand Down
2 changes: 1 addition & 1 deletion 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.8.6",
"version": "0.8.7",
"description": "JavaScript bindings for libwally",
"main": "index.js",
"type": "module",
Expand Down

0 comments on commit 38b85bf

Please sign in to comment.