From aef224873b793bcb71eb600f915790c2d39e059d Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Thu, 15 Aug 2024 13:54:28 -0700 Subject: [PATCH] Cut lading 0.22.0 This commit is the release of 0.22.0 version of lading. We have improved lading's ability to operate in a container ecosystem, exposing telemetry over UDS and by allowing a target to be specified by container name and enable effectively infinite duration experiments. REF SMPTNG-441 Signed-off-by: Brian L. Troutwine --- CHANGELOG.md | 9 ++------- Cargo.lock | 2 +- lading/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bf00591f..1f2e94d0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,17 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased -### Added -- Retrieve memory, CPU information from cgroup controller for every pid observed on Linux. + +## [0.22.0] ### Fixed - Fixes bugs in `smaps` parsing code that can result in under-counting RSS in the smaps view of the data. - -## [0.22.0-rc1] -### Fixed - Target observer was not exposed through CLI. - -## [0.22.0-rc0] ### Changed - Now built using rust 1.79.0 ### Added diff --git a/Cargo.lock b/Cargo.lock index 738140585..c7c399857 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1387,7 +1387,7 @@ dependencies = [ [[package]] name = "lading" -version = "0.22.0-rc1" +version = "0.22.0" dependencies = [ "async-pidfd", "average", diff --git a/lading/Cargo.toml b/lading/Cargo.toml index fff810cf7..cdf176287 100644 --- a/lading/Cargo.toml +++ b/lading/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lading" -version = "0.22.0-rc1" +version = "0.22.0" authors = [ "Brian L. Troutwine ", "George Hahn ",