Skip to content

Commit 1e71763

Browse files
committed
Bump version to 1.2.0 (dso ver 3.0.3)
1 parent 004af20 commit 1e71763

File tree

11 files changed

+29
-15
lines changed

11 files changed

+29
-15
lines changed

CHANGES.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,29 @@
11
# Changes
22

3-
## Unreleased
3+
## Version 1.2.0
44

55
### Added
66

7+
- Python: Add Python 3.12 wheels to the binary releases/PyPI.
8+
- tx: expose `wally_tx_input_clone`/`wally_tx_input_clone` for input cloning.
9+
- Build: Add new static analysis CI runs.
10+
711
### Changed
812

913
- Javascript: The npm build now uses nodejs 20, as nodejs 16 is end-of-life.
14+
- Android: Update android NDK to version 26b.
15+
- libsecp256k1-zkp: The library has been updated to include the latest
16+
changes to its cmake infrastructure.
17+
- cmake: Now takes advantage of the new libsecp256k1-zkp cmake files to build
18+
experimental modules and export the project in cmake style. cmake now also
19+
builds test and collects coverage data.
1020

1121
### Fixed
1222

23+
- Build: Don't use `which` on Debian as it is now deprecated.
24+
- Various bug fixes from static analysis.
25+
- Various build and documentation fixes.
26+
1327

1428
## Version 1.1.0
1529

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.1.0
123+
pip install wallycore==1.2.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.1.0
5+
VERSION 1.2.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.1.0])
2+
AC_INIT([libwallycore],[1.2.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'1.1.0'
170+
version = u'1.2.0'
171171
# The full version, including alpha/beta/rc tags.
172172
release = version
173173

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 1
33+
#define WALLY_MINOR_VER 2
3434
#define WALLY_PATCH_VER 0
35-
#define WALLY_BUILD_VER 0x10100
35+
#define WALLY_BUILD_VER 0x10200
3636

3737
/**
3838
* Initialize wally.

setup.py

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

171171
kwargs = {
172172
'name': 'wallycore',
173-
'version': '1.1.0',
173+
'version': '1.2.0',
174174
'description': 'libwally Bitcoin library',
175175
'long_description': 'Python bindings for the libwally Bitcoin library',
176176
'url': 'https://github.com/ElementsProject/libwally-core',

src/Makefile.am

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

199199
if SHARED_BUILD_ENABLED
200200
# Increment at every ABI change (whether breaking or non-breaking)
201-
LT_VER_CURRENT = 2
201+
LT_VER_CURRENT = 3
202202
# Increment at every release, but reset to 0 at every ABI change
203203
LT_VER_REVISION = 0
204204
# Increment at every ABI change, but reset to 0 if breaking
205-
LT_VER_AGE = 1
205+
LT_VER_AGE = 2
206206
# The library filename will be "libwallycore.so.$((current-age)).$((age)).$((revision))",
207207
# and the soname will be "libwallycore.so.$((current-age))".
208208
# 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.1.0",
3+
"version": "1.2.0",
44
"description": "JavaScript bindings for libwally",
55
"main": "src/index.js",
66
"type": "module",

0 commit comments

Comments
 (0)