diff --git a/CHANGELOG.md b/CHANGELOG.md index 533ce61..26deec8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +- + +## [1.0.1](https://github.com/autometrics-dev/autometrics-rs/releases/tag/v1.0.1) - 2024-02-12 + - Update `http` to `1.0`. This fixes compatibility with `axum 0.7` (#167) - Explicitly set default timeout and period for the OTEL push exporter (#168) - Fix a regression that made all compilation errors in instrumented code appear as located in diff --git a/Cargo.toml b/Cargo.toml index b21d5b0..166a492 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "1.0.0" +version = "1.0.1" edition = "2021" authors = ["Fiberplane ", "Evan Schwartz <3262610+emschwartz@users.noreply.github.com>"] description = " Easily add metrics to your code that actually help you spot and debug issues in production. Built on Prometheus and OpenTelemetry." @@ -21,4 +21,4 @@ members = [ exclude = ["examples/data", "examples/target"] [workspace.dependencies] -autometrics-macros = { version = "1.0.0", path = "autometrics-macros" } +autometrics-macros = { version = "1.0.1", path = "autometrics-macros" }