Skip to content

Commit f9ad057

Browse files
committed
Bump version to 1.0.0
1 parent 1e95d4c commit f9ad057

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
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==0.9.2
123+
pip install wallycore==1.0.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.20)
22

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

include/wally_core.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ extern "C" {
2929
#define WALLY_ENOMEM -3 /** malloc() failed */
3030

3131
/** Library version */
32-
#define WALLY_MAJOR_VER 0
33-
#define WALLY_MINOR_VER 9
34-
#define WALLY_PATCH_VER 2
35-
#define WALLY_BUILD_VER 0x902
32+
#define WALLY_MAJOR_VER 1
33+
#define WALLY_MINOR_VER 0
34+
#define WALLY_PATCH_VER 0
35+
#define WALLY_BUILD_VER 0x10000
3636

3737
/**
3838
* Initialize wally.

setup.py

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

9292
kwargs = {
9393
'name': 'wallycore',
94-
'version': '0.9.2',
94+
'version': '1.0.0',
9595
'description': 'libwally Bitcoin library',
9696
'long_description': 'Python bindings for the libwally Bitcoin library',
9797
'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.2",
3+
"version": "1.0.0",
44
"description": "JavaScript bindings for libwally",
55
"main": "src/index.js",
66
"type": "module",

src/wasm_package/src/const.js

Lines changed: 4 additions & 4 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 = 0x902;
112+
export const WALLY_BUILD_VER = 0x10000;
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 */
@@ -118,7 +118,7 @@ export const WALLY_EINVAL = -2; /** Invalid argument */
118118
export const WALLY_ENOMEM = -3; /** malloc() failed */
119119
export const WALLY_ERROR = -1; /** General error */
120120
export const WALLY_HOST_COMMITMENT_LEN = 32;
121-
export const WALLY_MAJOR_VER = 0;
121+
export const WALLY_MAJOR_VER = 1;
122122
export const WALLY_MAX_OP_RETURN_LEN = 80; /* Maximum length of OP_RETURN data push */
123123
export const WALLY_MINISCRIPT_DEPTH_MASK = 0xffff0000; /** Mask for limiting maximum depth */
124124
export const WALLY_MINISCRIPT_DEPTH_SHIFT = 16; /** Shift to convert maximum depth to flags */
@@ -127,7 +127,7 @@ export const WALLY_MINISCRIPT_POLICY_TEMPLATE = 0x08; /** Only allow policy temp
127127
export const WALLY_MINISCRIPT_REQUIRE_CHECKSUM = 0x04; /** Require a checksum to be present */
128128
export const WALLY_MINISCRIPT_TAPSCRIPT = 0x01; /** Tapscript, use x-only pubkeys */
129129
export const WALLY_MINISCRIPT_UNIQUE_KEYPATHS = 0x10; /** For policy templates, ensure BIP32 derivation paths differ for identical keys */
130-
export const WALLY_MINOR_VER = 9;
130+
export const WALLY_MINOR_VER = 0;
131131
export const WALLY_MS_CANONICAL_NO_CHECKSUM = 0x01; /** Do not include a checksum */
132132
export const WALLY_MS_IS_DESCRIPTOR = 0x20; /** Contains only descriptor expressions (no miniscript) */
133133
export const WALLY_MS_IS_MULTIPATH = 0x02; /** Allows multiple paths via ``<a;b;c>`` */
@@ -146,7 +146,7 @@ export const WALLY_NETWORK_LIQUID_TESTNET = 0x05; /** Liquid v1 testnet */
146146
export const WALLY_NETWORK_NONE = 0x00; /** Used for miniscript parsing only */
147147
export const WALLY_NO_CODESEPARATOR = 0xffffffff; /* No BIP342 code separator position */
148148
export const WALLY_OK = 0; /** Success */
149-
export const WALLY_PATCH_VER = 2;
149+
export const WALLY_PATCH_VER = 0;
150150
export const WALLY_PSBT_EXTRACT_NON_FINAL = 0x1; /* Extract without final scriptsig and witness */
151151
export const WALLY_PSBT_FINALIZE_NO_CLEAR = 0x1; /* Finalize without clearing redeem/witness scripts etc */
152152
export const WALLY_PSBT_FLAG_NON_FINAL = 0x1;

0 commit comments

Comments
 (0)