Skip to content

Commit ae87221

Browse files
committed
Bump version to 1.5.0
1 parent 2d55227 commit ae87221

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ installed.
120120
For non-development use, you can install wally from PyPI with `pip` as follows:
121121

122122
```
123-
pip install wallycore==1.4.0
123+
pip install wallycore==1.5.0
124124
```
125125

126126
For development, you can build and install wally using:

_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.18)
22

33
project(
44
libwallycore
5-
VERSION 1.4.0
5+
VERSION 1.5.0
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],[1.4.0])
2+
AC_INIT([libwallycore],[1.5.0])
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
@@ -168,7 +168,7 @@ def extract_docs(infile, outfile):
168168
# built documents.
169169
#
170170
# The short X.Y version.
171-
version = u'1.4.0'
171+
version = u'1.5.0'
172172
# The full version, including alpha/beta/rc tags.
173173
release = version
174174

include/wally_core.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ extern "C" {
3030

3131
/** Library version */
3232
#define WALLY_MAJOR_VER 1
33-
#define WALLY_MINOR_VER 4
33+
#define WALLY_MINOR_VER 5
3434
#define WALLY_PATCH_VER 0
35-
#define WALLY_BUILD_VER 0x10400
35+
#define WALLY_BUILD_VER 0x10500
3636

3737
/**
3838
* Initialize wally.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def _call(args, cwd=ABS_PATH):
172172

173173
kwargs = {
174174
'name': 'wallycore',
175-
'version': '1.4.0',
175+
'version': '1.5.0',
176176
'description': 'libwally Bitcoin library',
177177
'long_description': 'Python bindings for the libwally Bitcoin library',
178178
'url': 'https://github.com/ElementsProject/libwally-core',

src/Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,11 +199,11 @@ libwallycore_la_INCLUDES = \
199199

200200
if SHARED_BUILD_ENABLED
201201
# Increment at every ABI change (whether breaking or non-breaking)
202-
LT_VER_CURRENT = 6
202+
LT_VER_CURRENT = 7
203203
# Increment at every release, but reset to 0 at every ABI change
204204
LT_VER_REVISION = 0
205205
# Increment at every ABI change, but reset to 0 if breaking
206-
LT_VER_AGE = 0
206+
LT_VER_AGE = 1
207207
# The library filename will be "libwallycore.so.$((current-age)).$((age)).$((revision))",
208208
# and the soname will be "libwallycore.so.$((current-age))".
209209
# Do NOT try to make the library version-info follow the project release version number!

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": "1.4.0",
3+
"version": "1.5.0",
44
"description": "JavaScript bindings for libwally",
55
"main": "src/index.js",
66
"type": "module",

src/wasm_package/src/const.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export const WALLY_ADDRESS_VERSION_WIF_TESTNET = 0xEF; /** Wallet Import Format
109109
export const WALLY_BIP32_CHAIN_CODE_LEN = 32;
110110
export const WALLY_BIP32_TWEAK_SUM_LEN = 32;
111111
export const WALLY_BTC_MAX = 21000000;
112-
export const WALLY_BUILD_VER = 0x10400;
112+
export const WALLY_BUILD_VER = 0x10500;
113113
export const WALLY_CA_PREFIX_LIQUID = 0x0c; /** Liquid v1 confidential address prefix */
114114
export const WALLY_CA_PREFIX_LIQUID_REGTEST = 0x04; /** Liquid v1 confidential address prefix for regtest */
115115
export const WALLY_CA_PREFIX_LIQUID_TESTNET = 0x17; /** Liquid v1 confidential address prefix for testnet */
@@ -128,7 +128,7 @@ export const WALLY_MINISCRIPT_POLICY_TEMPLATE = 0x08; /** Only allow policy temp
128128
export const WALLY_MINISCRIPT_REQUIRE_CHECKSUM = 0x04; /** Require a checksum to be present */
129129
export const WALLY_MINISCRIPT_TAPSCRIPT = 0x01; /** Tapscript, use x-only pubkeys */
130130
export const WALLY_MINISCRIPT_UNIQUE_KEYPATHS = 0x10; /** For policy templates, ensure BIP32 derivation paths differ for identical keys */
131-
export const WALLY_MINOR_VER = 4;
131+
export const WALLY_MINOR_VER = 5;
132132
export const WALLY_MS_ANY_BLINDING_KEY = 0xE00; /** SLIP-77, ELIP-150 or ELIP-151 blinding key present */
133133
export const WALLY_MS_BLINDING_KEY_INDEX = 0xffffffff; /* Key index for confidential blinding key */
134134
export const WALLY_MS_CANONICAL_NO_CHECKSUM = 0x01; /** Do not include a checksum */
@@ -223,7 +223,7 @@ export const WALLY_SIGHASH_NONE = 0x02;
223223
export const WALLY_SIGHASH_RANGEPROOF = 0x40 ; /* Liquid/Elements only */
224224
export const WALLY_SIGHASH_SINGLE = 0x03;
225225
export const WALLY_SIGHASH_TR_IN_MASK = 0xc0; /* Taproot mask for determining input hash type */
226-
export const WALLY_SIGTYPE_MASK = 0xf; /* Mask for signature type in in flags */
226+
export const WALLY_SIGTYPE_MASK = 0xf; /* Mask for signature type in flags */
227227
export const WALLY_SIGTYPE_PRE_SW = 0x1; /* Pre-segwit signature hash */
228228
export const WALLY_SIGTYPE_SW_V0 = 0x2; /* Segwit v0 signature hash */
229229
export const WALLY_SIGTYPE_SW_V1 = 0x3; /* Segwit v1 (taproot) signature hash */

0 commit comments

Comments
 (0)