Skip to content

Commit

Permalink
Updated v0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ksedgwic committed Oct 31, 2024
1 parent fbb8b7b commit c8cbe82
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
40 changes: 40 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,46 @@ 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.14.1] - 2024-10-31: "Hand at the Grindstone"

### Added

- **Contrib Script Enhancements**:
- Added `--lightning-dir` option to the contrib scripts:
- `clboss-earnings-history`
- `clboss-recent-earnings`
- `clboss-routing-stats`

This allows users with non-default configurations to specify their
`lightning-dir` when running these scripts. ([#243])

- **Nix Support**:
- Introduced `contrib-shell.nix` to facilitate running contrib
scripts within Nix environments. Users can now execute
`nix-shell contrib-shell.nix` and run any Python scripts in
`contrib/`. ([#241])
- Updated `contrib/README.md` with detailed instructions for
Python dependencies installation, including a section on using
Nix.

- **Stack Unwinding Support**:
- Implemented `libunwind` for stack unwinding. This replaces the use
of `backtrace()`, which is not available on Alpine Linux. This
improves compatibility with Alpine and other systems lacking
`backtrace()`. ([#245], [#249])
- Replaced the use of `program_invocation_name` (only available on
Linux) with a custom global variable to store the program name,
improving portability to systems like FreeBSD and other Unix-like
systems. ([#242])

### Fixed

- **Build System**:
- Fixed issues when building CLBOSS as a git submodule. ([#247], [#250])
- Improved diagnostic messages for missing `commit_hash.h` in
tarball builds. This helps users identify and resolve build issues
when `commit_hash.h` is not present. ([#244]), [#251])

## [0.14.0] - 2024-09-25: "Hand at the Grindstone"

### Added
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([clboss], [0.14.0], [[email protected]])
AC_INIT([clboss], [0.14.1], [[email protected]])
AC_CONFIG_AUX_DIR([auxdir])
AM_INIT_AUTOMAKE([subdir-objects tar-ustar])
AC_CONFIG_SRCDIR([main.cpp])
Expand Down

0 comments on commit c8cbe82

Please sign in to comment.