Skip to content

Commit

Permalink
Bump version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jgriffiths committed Aug 29, 2023
1 parent a120680 commit bc57fd8
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion _CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
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.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])
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions include/wally_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions 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.9.1",
"version": "1.0.0",
"description": "JavaScript bindings for libwally",
"main": "src/index.js",
"type": "module",
Expand Down

0 comments on commit bc57fd8

Please sign in to comment.