Skip to content

Commit

Permalink
Release version 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sd2k committed Nov 20, 2023
1 parent 58893d5 commit 82cd9fc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
repository = "https://github.com/sd2k/rocket_prometheus"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 82cd9fc

Please sign in to comment.