Skip to content

Commit

Permalink
Release v0.9.0
Browse files Browse the repository at this point in the history
Since this critical bug fix changes API, we need to bump above patch.
  • Loading branch information
asaaki committed May 10, 2021
1 parent 73402eb commit 73792e6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Additional changes to original format:
- `Thank you for your contribution` for shout-outs to the community

## [Unreleased]

## [0.9.0] - 2021-05-11
### Fixed
- `MetricsConfig` would cause a stack overflow on construction

Expand Down Expand Up @@ -167,7 +169,8 @@ _(not released to crates.io)_
## [0.1.0] - 2020-08-01
**Initial release**

[Unreleased]: https://github.com/asaaki/opentelemetry-tide/compare/v0.8.0...HEAD
[Unreleased]: https://github.com/asaaki/opentelemetry-tide/compare/v0.9.0...HEAD
[0.8.0]: https://github.com/asaaki/opentelemetry-tide/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/asaaki/opentelemetry-tide/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/asaaki/opentelemetry-tide/compare/v0.6.2...v0.7.0
[0.6.1]: https://github.com/asaaki/opentelemetry-tide/compare/v0.6.1...v0.6.2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opentelemetry-tide"
version = "0.8.0"
version = "0.9.0"
authors = [
"Christoph Grabo <asaaki@mannaz.cc>",
"The opentelemetry-tide Contributors"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ Be part of the new observability movement!

* It only implements very basic request tracing on the middleware layer.
If you need spans for your executed code, you need to add them yourself.
* The majority of the implementation is based on <https://github.com/OutThereLabs/actix-web-opentelemetry>.
* It provides basic prometheus metrics, based on the [RED method].
* This project got inspired by <https://github.com/OutThereLabs/actix-web-opentelemetry>.
* You probably do not want to use it in production. 🤷

## How to use
Expand Down Expand Up @@ -73,7 +73,7 @@ curl http://localhost:3000/metrics
async-std = { version = "1.9", features = ["attributes"] }
opentelemetry = { version = "0.14", features = ["async-std", "rt-async-std"] }
opentelemetry-jaeger = { version = "0.13", features = ["async-std"] }
opentelemetry-tide = "0.8"
opentelemetry-tide = "0.9"
tide = "0.16"
```

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ curl http://localhost:3000/metrics
async-std = { version = "1.9", features = ["attributes"] }
opentelemetry = { version = "0.14", features = ["async-std", "rt-async-std"] }
opentelemetry-jaeger = { version = "0.13", features = ["async-std"] }
opentelemetry-tide = "0.8"
opentelemetry-tide = "0.9"
tide = "0.16"
```
Expand Down
2 changes: 1 addition & 1 deletion src/middlewares/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ impl MetricsConfig {
global_labels,
boundaries,
quantiles,
route
route,
}
}
}
Expand Down

0 comments on commit 73792e6

Please sign in to comment.