From bc57fd8679da740a78fd8368fc73ea603c5f077a Mon Sep 17 00:00:00 2001 From: Jon Griffiths Date: Wed, 30 Aug 2023 09:11:47 +1200 Subject: [PATCH] Bump version to 1.0.0 --- README.md | 2 +- _CMakeLists.txt | 2 +- configure.ac | 2 +- docs/source/conf.py | 2 +- include/wally_core.h | 8 ++++---- setup.py | 2 +- src/wasm_package/package-lock.json | 4 ++-- src/wasm_package/package.json | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index c4b790105..cb2621aef 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ installed. For non-development use, you can install wally with `pip` as follows: ``` -pip install wallycore==0.9.1 +pip install wallycore==1.0.0 ``` For python development, you can build and install wally using: diff --git a/_CMakeLists.txt b/_CMakeLists.txt index ce0e5c97a..e575b10c2 100644 --- a/_CMakeLists.txt +++ b/_CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.20) project( libwallycore - VERSION 0.9.1 + VERSION 1.0.0 DESCRIPTION "A collection of useful primitives for cryptocurrency wallets" LANGUAGES C ) diff --git a/configure.ac b/configure.ac index 64e721db2..6035e1dae 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.60]) -AC_INIT([libwallycore],[0.9.1]) +AC_INIT([libwallycore],[1.0.0]) AC_CONFIG_AUX_DIR([tools/build-aux]) AC_CONFIG_MACRO_DIR([tools/build-aux/m4]) AC_CONFIG_SRCDIR([src/mnemonic.h]) diff --git a/docs/source/conf.py b/docs/source/conf.py index f16c94197..e5ca68a98 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -167,7 +167,7 @@ def extract_docs(infile, outfile): # built documents. # # The short X.Y version. -version = u'0.9.1' +version = u'1.0.0' # The full version, including alpha/beta/rc tags. release = version diff --git a/include/wally_core.h b/include/wally_core.h index d52d64e79..328b2417b 100644 --- a/include/wally_core.h +++ b/include/wally_core.h @@ -29,10 +29,10 @@ extern "C" { #define WALLY_ENOMEM -3 /** malloc() failed */ /** Library version */ -#define WALLY_MAJOR_VER 0 -#define WALLY_MINOR_VER 9 -#define WALLY_PATCH_VER 1 -#define WALLY_BUILD_VER 0x901 +#define WALLY_MAJOR_VER 1 +#define WALLY_MINOR_VER 0 +#define WALLY_PATCH_VER 0 +#define WALLY_BUILD_VER 0x10000 /** * Initialize wally. diff --git a/setup.py b/setup.py index 8f8cf2af4..409663a3b 100644 --- a/setup.py +++ b/setup.py @@ -93,7 +93,7 @@ def call(cmd): kwargs = { 'name': 'wallycore', - 'version': '0.9.1', + 'version': '1.0.0', 'description': 'libwally Bitcoin library', 'long_description': 'Python bindings for the libwally Bitcoin library', 'url': 'https://github.com/ElementsProject/libwally-core', diff --git a/src/wasm_package/package-lock.json b/src/wasm_package/package-lock.json index a0f501a66..3e0bad7fd 100644 --- a/src/wasm_package/package-lock.json +++ b/src/wasm_package/package-lock.json @@ -1,12 +1,12 @@ { "name": "wallycore", - "version": "0.9.1", + "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "wallycore", - "version": "0.9.1", + "version": "1.0.0", "license": "(MIT or BSD)", "devDependencies": { "buffer": "^6.0.3", diff --git a/src/wasm_package/package.json b/src/wasm_package/package.json index 0f48131f7..604d4a23b 100644 --- a/src/wasm_package/package.json +++ b/src/wasm_package/package.json @@ -1,6 +1,6 @@ { "name": "wallycore", - "version": "0.9.1", + "version": "1.0.0", "description": "JavaScript bindings for libwally", "main": "src/index.js", "type": "module",