Skip to content

Commit

Permalink
Release version 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sd2k committed May 20, 2024
1 parent d40fc58 commit 3384c48
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.1] - 2024-05-20
### Added

- Add `PrometheusMetrics::with_request_filter`, allowing requests to be omitted from metrics by passing a closure returning `false` ([#23](https://github.com/sd2k/rocket_prometheus/pull/23), by @Eijebong).

## [0.10.0] - 2023-11-20
### Changed

Expand Down Expand Up @@ -93,7 +98,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...HEAD
[Unreleased]: https://github.com/sd2k/rocket_prometheus/compare/v0.10.1...HEAD
[0.10.1]: https://github.com/sd2k/rocket_prometheus/compare/v0.10.0...v0.10.1
[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
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"
version = "0.10.1"
authors = ["Ben Sully <ben.sully88@gmail.com>"]
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"
rocket_prometheus = "0.10.1"
```

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"
rocket_prometheus = "0.10.1"
```
Then attach and mount a [`PrometheusMetrics`] instance to your Rocket app:
Expand Down

0 comments on commit 3384c48

Please sign in to comment.