diff --git a/CHANGELOG.md b/CHANGELOG.md index 92770a0c..3a12eca6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ ## [Unreleased] +## [3.12.0] - 2024-03-28 + +## Added +- MacOS cpu usage sampling. (#203) +- Metric unit annotations are added and exposed as metadata. +- Logs version number on startup. (#213) + +## Fixed + +- Incorrect summary stats (percentiles) were reported in version 3.10.2, 3.10.3, + and 3.11.0. (#216) + ## [3.11.0] - 2024-03-25 ## Changed @@ -185,8 +197,9 @@ - Rewritten implementation of Rezolus using libbpf-rs and perf-event2 to provide a more modern approach to BPF and Perf Event instrumentation. -[unreleased]: https://github.com/iopsystems/rezolus/compare/v3.11.0...HEAD -[3.10.3]: https://github.com/iopsystems/rezolus/compare/v3.10.3...v3.11.0 +[unreleased]: https://github.com/iopsystems/rezolus/compare/v3.12.0...HEAD +[3.12.0]: https://github.com/iopsystems/rezolus/compare/v3.11.0...v3.12.0 +[3.11.0]: https://github.com/iopsystems/rezolus/compare/v3.10.3...v3.11.0 [3.10.3]: https://github.com/iopsystems/rezolus/compare/v3.10.2...v3.10.3 [3.10.2]: https://github.com/iopsystems/rezolus/compare/v3.10.1...v3.10.2 [3.10.1]: https://github.com/iopsystems/rezolus/compare/v3.10.0...v3.10.1 diff --git a/Cargo.lock b/Cargo.lock index e1ed9f1a..15806349 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1494,7 +1494,7 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "rezolus" -version = "3.11.1-alpha.0" +version = "3.12.0" dependencies = [ "backtrace", "chrono", @@ -1842,7 +1842,7 @@ dependencies = [ [[package]] name = "systeminfo" -version = "3.11.1-alpha.0" +version = "3.12.0" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index c331d958..02a4b2b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" description = "High resolution systems performance telemetry agent" [workspace.package] -version = "3.11.1-alpha.0" +version = "3.12.0" license = "MIT OR Apache-2.0" [dependencies]