diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a19bf498..293e250f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## Release 0.73.3 - 24-10-25 + +### Added +- GA_create_redeposit_transaction: Add support for ``"expired_at"`` to create + re-deposit transactions for UTXOs that will expire in the future. +- GA_get_balance/GA_get_unspent_outputs/GA_create_redeposit_transaction: Add + support for ``"expires_in"`` to support filtering for UTXOs that expire in + the given number of blocks from the current block height. + +### Changed +- Transactions: Improve error messages when too many or duplicate inputs are used. + +### Fixed +- Transactions: Fix weight calculation for Liquid when all inputs to a transaction + are non-segwit (i.e. p2sh, p2pkh). This fix prevents the actual fee rate from + becoming lower than the desired fee rate. +- Singlesig(Liquid): Prevent returned fee rates from falling below the networks + real relay fee rate of 0.1 sat/vbyte. + ## Release 0.73.2 - 24-10-08 ### Added diff --git a/CMakeLists.txt b/CMakeLists.txt index 574683da6..80b31cb74 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10) -project(gdk VERSION 0.73.2 LANGUAGES C CXX) +project(gdk VERSION 0.73.3 LANGUAGES C CXX) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON)