diff --git a/ChangeLog b/ChangeLog index ca50f3100..b8416f2a8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,24 @@ 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.13.3] - 2024-08-09: "Blinded by the Light" + +This point release fixes an important bug by restoring the earned fee +information in CLBOSS. + +### Added + +- The version string is now logged on startup and in the + `clboss-status` output ([#205]). +- Added an earnings_tracker diagram. + +### Fixed + +- The `ForwardFeeMonitor` (and subsequently the `EarningsTracker`) have + restored ability see fee income ([#222], [#223]). +- A possible vector out of bounds access was removed ([#219]). +- Added totals to clboss-status offchain_earnings_tracker ([#223]). + ## [0.13.2] - 2024-07-18: "Bwahaha's Dominion" ### Added diff --git a/configure.ac b/configure.ac index 456a798f4..425ad25d5 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([clboss], [0.13.2], [ken@bonsai.com]) +AC_INIT([clboss], [0.13.3], [ken@bonsai.com]) AC_CONFIG_AUX_DIR([auxdir]) AM_INIT_AUTOMAKE([subdir-objects tar-ustar]) AC_CONFIG_SRCDIR([main.cpp])