From 72aa0f79794017710ec821cb0919c89d1ae1968a Mon Sep 17 00:00:00 2001 From: Oliver Browne <109075559+oliverbrowneprima@users.noreply.github.com> Date: Mon, 5 Dec 2022 17:33:25 +0100 Subject: [PATCH] Prepare for 0.5.0 release (#35) --- CHANGELOG.md | 16 +++++++++++++++- Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 139ea8c..97dc6ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --- +## [0.5.0] - 2022-12-05 + +### Added +- A `TimingGuard` guard struct, for more flexible execution time tracking +- The `compare!` macro, for running experiments in production + +### Changed +- Fixed 0.4.0 backwards compatibility, relating to errors in some macro definitions +- Fixed various documentation errors + +--- + ## [0.4.0] - 2022-11-21 ### Added @@ -71,7 +83,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.5] -[Unreleased]: https://github.com/primait/prima_datadog.rs/compare/0.4.0...HEAD + +[Unreleased]: https://github.com/primait/prima_datadog.rs/compare/0.5.0...HEAD +[0.5.0]: https://github.com/primait/prima_datadog.rs/compare/0.4.0...0.5.0 [0.4.0]: https://github.com/primait/prima_datadog.rs/compare/0.3.1...0.4.0 [0.3.1]: https://github.com/primait/prima_datadog.rs/compare/0.3.0...0.3.1 [0.3.0]: https://github.com/primait/prima_datadog.rs/compare/0.2.0...0.3.0 diff --git a/Cargo.toml b/Cargo.toml index b8143d7..3759ee4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "prima_datadog" -version = "0.4.0" +version = "0.5.0" edition = "2018" description = "An opinionated library to share code and approach to Datadog logging in prima.it" license = "MIT"