Skip to content

Commit e0d8ec6

Browse files
committed
Bump version to 0.75.0, update CHANGELOG.md
1 parent 21447e9 commit e0d8ec6

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
# Changelog
22

3-
## Release 0.75.0 - Unreleased
3+
## Release 0.75.0 - 25-03-20
44

55
### Added
66
- Bitcoin(Singlesig): Add support for BIP-86 P2TR (Taproot) wallets.
77
- HWW: Add a new device JSON key ``"supports_p2tr"`` to indicate P2TR inputs
88
can be signed by the device.
99
- Liquid: Automatically enable fee discounting for Liquid environments.
10+
- Add an AWS lambda docker build image and a Python wheel for Python 3.10 lambda containers.
1011

1112
### Changed
1213

13-
- Multisig: The minium supported gdk version is now 0.68.0. However, we strongly
14+
- Multisig: The minimum supported gdk version is now 0.68.0. However, we strongly
1415
recommend all clients update to the latest released gdk version to ensure they
1516
have all available security updates, bug fixes and new features.
17+
- Liquid: Allow callers to create dust (non-change) transaction outputs.
18+
- Liquid: Lower the L-BTC dust threshold to 21 l-satoshi following ELIP 201.
1619
- Build: Update rust to 1.71.1, which is now the MSRV for building gdk.
1720
- Singlesig(Bitcoin): Outgoing wallet mempool transactions with invalid signatures
1821
(as might be expected from a malicious Electrum server) are no longer silently
@@ -24,7 +27,7 @@
2427
- GA_get_unspent_outputs_for_private_key: Do not include wallet keys such as
2528
``"subaccount"`` and ``"pointer"`` in the returned UTXOs (these were added
2629
mistakenly in release 0.68.0).
27-
- Dependencies: Update rust dependencies, libwally.
30+
- Dependencies: Update rust dependencies, libwally, json, boost, autobahn-cpp, websocketpp.
2831
- JSON: Improve error messages for developers when JSON values are passed as
2932
incorrect types (e.g. an array is expected but another type is given).
3033
- Build: Various code quality and build-related cleanups.
@@ -38,12 +41,15 @@
3841
- Watch-only(Singlesig): Prevent watch-only login with an empty descriptor array.
3942
- GA_sign_message: Ensure an ``"error"`` element is always returned (empty if
4043
the call succeeded).
44+
- Singlesig: Fix a deadlock that could cause singlesig sessions to hang.
45+
- Python: Fix Python wrapper compilation with later Python SDK versions.
46+
- JSON: Fix miscompilation of jSON handling code with older gcc versions.
4147

4248

4349
## Release 0.74.3 - 25-01-11
4450

4551
### Added
46-
- GA_convert_amount(Liquid): Ensure L-BTC amounts are within concensus limits
52+
- GA_convert_amount(Liquid): Ensure L-BTC amounts are within consensus limits
4753
when asset information is included in the input JSON.
4854

4955
### Changed

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.74.2 LANGUAGES C CXX)
2+
project(gdk VERSION 0.75.0 LANGUAGES C CXX)
33

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

0 commit comments

Comments
 (0)