Skip to content

Commit 1238284

Browse files
committed
Bump version to 0.74.0, update release notes
1 parent 056666f commit 1238284

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## Release 0.74.0 - Unreleased
4+
5+
### Added
6+
### Changed
7+
- GA_psbt_sign: Now signs all required inputs and then attempts to finalize.
8+
If the PSBT is not fully signed, some inputs will remain unfinalized.
9+
- GA_psbt_sign: Now adds any missing inputs scripts when signing.
10+
- OpenSSL: build with PSK support for better static linking compatibility.
11+
- Python: Remove vestigial Python 2 support.
12+
- Dependencies: Update libwally.
13+
- Misc code cleanups and documentation fixes.
14+
15+
### Fixed
16+
- PSBT: When a user signature is present for an input, use it instead of
17+
asking the signer to re-sign.
18+
- PSBT: Fix user-only signing of multisig inputs, by adding the user
19+
signature and leaving the input unfinalized for future Green signing..
20+
- PSBT: Fix detection of expired multisig CSV inputs when finalizing v0 PSBTs.
21+
- Python: Fix gdk session cleanup to happen when a session falls out of scope
22+
or is garbage collected. Previously sessions would generally be cleaned up
23+
only on program exit, which could lead to excessive resource use.
24+
325
## Release 0.73.4 - 24-11-12
426

527
### Added

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.10)
2-
project(gdk VERSION 0.73.4 LANGUAGES C CXX)
2+
project(gdk VERSION 0.74.0 LANGUAGES C CXX)
33

44
set(CMAKE_CXX_STANDARD 17)
55
set(CMAKE_CXX_STANDARD_REQUIRED ON)

0 commit comments

Comments
 (0)