update version and CHANGELOG for v0.16.1
Some checks are pending
Code Base Sanity Check / tests (push) Waiting to run
Code Base Sanity Check / coverage (push) Waiting to run
Code Base Sanity Check / build-clang (push) Waiting to run

Bump AC_INIT to 0.16.1 and add the CHANGELOG entry for the two
point-release fixes from issue #321: tolerate the missing old_state
field in channel_state_changed notifications, and request p2tr
addresses from newaddr.
This commit is contained in:
Ken Sedgwick 2026-08-06 16:44:58 -07:00
parent 1c3ac637ec
commit 04fc498b67
No known key found for this signature in database
GPG key ID: DBD2AF0849D711A9
2 changed files with 15 additions and 1 deletions

View file

@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [0.16.1] - Unreleased
### Fixed
- Fixed "Unhandled exception in concurrent task! Incorrect type." on
newer CLN: the `channel_state_changed` notification for a brand-new
channel no longer carries `old_state` (deprecated in CLN v25.05,
absent as of v26.06), which crashed the parse in
`ChannelCreateDestroyMonitor`. ([#321])
- Fixed `newaddr` handling for modern CLN, which no longer returns
bech32 addresses by default: the address request now asks for p2tr.
Previously the first swap attempt threw the same "Incorrect type."
and silently disabled clboss-initiated swaps until restart. ([#321])
## [0.16.0] - 2026-04-21: "Darkness on the Edge of the Mempool"
### Added

View file

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([clboss], [0.16.0], [ken@bonsai.com])
AC_INIT([clboss], [0.16.1], [ken@bonsai.com])
AC_CONFIG_AUX_DIR([auxdir])
AM_INIT_AUTOMAKE([subdir-objects tar-ustar])
AC_CONFIG_SRCDIR([main.cpp])