diff --git a/CHANGELOG.md b/CHANGELOG.md index cbfc9d3..3b164f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ 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] + +## [0.10.0] - 2023-11-20 ### Changed - Upgrade Rocket dependency to 0.5.0. @@ -91,7 +93,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First version of the crate released to crates.io. -[Unreleased]: https://github.com/sd2k/rocket_prometheus/compare/v0.10.0-rc.3...HEAD +[Unreleased]: https://github.com/sd2k/rocket_prometheus/compare/v0.10.0...HEAD +[0.10.0]: https://github.com/sd2k/rocket_prometheus/compare/v0.10.0-rc.3...v0.10.0 [0.10.0-rc.3]: https://github.com/sd2k/rocket_prometheus/compare/v0.10.0-rc.2...v0.10.0-rc.3 [0.10.0-rc.2]: https://github.com/sd2k/rocket_prometheus/compare/v0.10.0-rc.1...v0.10.0-rc.2 [0.10.0-rc.1]: https://github.com/sd2k/rocket_prometheus/compare/v0.9.0...v0.10.0-rc.1 diff --git a/Cargo.toml b/Cargo.toml index 3eea344..023cd07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "rocket_prometheus" description = """ Prometheus instrumentation for Rocket applications. """ -version = "0.10.0-rc.3" +version = "0.10.0" authors = ["Ben Sully "] repository = "https://github.com/sd2k/rocket_prometheus" edition = "2018" diff --git a/README.md b/README.md index a29c825..45f87c4 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Add this crate to your `Cargo.toml` alongside Rocket 0.5.0: ```toml [dependencies] rocket = "0.5.0" -rocket_prometheus = "0.10.0-rc.3" +rocket_prometheus = "0.10.0" ``` Then attach and mount a `PrometheusMetrics` instance to your Rocket app: diff --git a/src/lib.rs b/src/lib.rs index 4294802..3577832 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,7 +8,7 @@ Add this crate to your `Cargo.toml` alongside Rocket 0.5.0: ```toml [dependencies] rocket = "0.5.0" -rocket_prometheus = "0.10.0-rc.3" +rocket_prometheus = "0.10.0" ``` Then attach and mount a [`PrometheusMetrics`] instance to your Rocket app: