diff --git a/CHANGELOG.md b/CHANGELOG.md index f21d46a..b8ca1b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.7](https://github.com/mladedav/json-subscriber/compare/json-subscriber-v0.2.6...json-subscriber-v0.2.7) - 2026-01-24 + +### Added + +- support tracing-opentelemetry 0.32 ([#30](https://github.com/mladedav/json-subscriber/pull/30)) + ### Other -- use trusted publishing to crates.io +- Extract opentelemetry ID retrieval code into a macro ([#27](https://github.com/mladedav/json-subscriber/pull/27)) ## [0.2.6](https://github.com/mladedav/json-subscriber/compare/json-subscriber-v0.2.5...json-subscriber-v0.2.6) - 2025-07-01 diff --git a/Cargo.lock b/Cargo.lock index 649c4ac..7e6304e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -333,7 +333,7 @@ dependencies = [ [[package]] name = "json-subscriber" -version = "0.2.7-alpha.1" +version = "0.2.7" dependencies = [ "async-trait", "criterion", diff --git a/Cargo.toml b/Cargo.toml index eb04e1a..57d7bdd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "json-subscriber" description = "Customizable layer and subscriber for `tracing` that emits logs in JSON" -version = "0.2.7-alpha.1" +version = "0.2.7" edition = "2021" rust-version = "1.75" homepage = "https://github.com/mladedav/json-subscriber"