From 47c99358c22976db045c951c3123986834750d27 Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Tue, 3 Sep 2024 11:47:17 -0700 Subject: [PATCH] Update changelog, do a point release Signed-off-by: Brian L. Troutwine --- CHANGELOG.md | 7 ++++++- Cargo.lock | 2 +- lading/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cab2a135..8fc95d202 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.23.1] +### Fixed +- Fixes a panic in the signal mechanism that appeared when using the file + generator most prominately. + ## [0.23.0] ### Added - Added ability to create tags for both expvar and prometheus target metrics specific to a single target_metrics configuration (example below shows prometheus metrics collected from the core agent and two additional tags created) ```yaml - target_metrics: + target_metrics: - prometheus: #core agent telemetry uri: "http://127.0.0.1:5000/telemetry" tags: diff --git a/Cargo.lock b/Cargo.lock index 1124b92ae..a5d84416e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1400,7 +1400,7 @@ dependencies = [ [[package]] name = "lading" -version = "0.23.0" +version = "0.23.1" dependencies = [ "async-pidfd", "average", diff --git a/lading/Cargo.toml b/lading/Cargo.toml index 5fcab18de..44a40faf1 100644 --- a/lading/Cargo.toml +++ b/lading/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lading" -version = "0.23.0" +version = "0.23.1" authors = [ "Brian L. Troutwine ", "George Hahn ",