From c5968e9dff622c52545431f47b2372602ad788ac Mon Sep 17 00:00:00 2001 From: Christoph Grabo Date: Wed, 13 Jan 2021 23:47:53 +0100 Subject: [PATCH] Bump version to 0.6.0 Includes: - initial changelog setup --- CHANGELOG.md | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 73 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e8f5250 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,71 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +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). + +Additional changes to original format: +- `Cosmetic` for changes without impact on the code/logic +- `Thank you for your contribution` for shout-outs to the community + +## [Unreleased] + +## [0.6.0] - 2021-01-13 +### Added +- Changelog with basic historical summaries +### Changed +- Middleware takes the uninstall guard to support different setup styles and ensures the provider lives long enough. + + Example for an alternative tracing middleware init in [this PR comment](https://github.com/asaaki/opentelemetry-tide/pull/4#issuecomment-757456319). +- dependency updates and adjustment of code and example +### Thank you for your contribution +- [@fiag][fiag] + +## [0.5.2] - 2020-12-16 +### Fixed +- This patch release fixes an issue around missing PROFILE env var. (#3) +### Thank you for your contribution +- [@arlyon][arlyon] + +## 0.5.1 - 2020-12-06 +_(untagged crates.io release)_ + +## [0.5.0] - 2020-12-04 +### Changed +- Align span data with specification +- Internal improvements +### Cosmetic +- CI setup improvements +### Thank you for your contribution +- [@arlyon][arlyon] + +## 0.4.0 +_(skipped)_ + +## [0.3.1] - 2020-08-02 +### Fixed +- doctests + +## [0.3.0] - 2020-08-02 +_(not released to crates.io)_ + +## [0.2.0] - 2020-08-01 +### Cosmetic +- Readme polishing +- Project cleanups + +## [0.1.0] - 2020-08-01 +**Initial release** + +[Unreleased]: https://github.com/asaaki/opentelemetry-tide/compare/v0.6.0...HEAD +[0.6.0]: https://github.com/asaaki/opentelemetry-tide/compare/v0.5.2...v0.6.0 +[0.5.2]: https://github.com/asaaki/opentelemetry-tide/compare/v0.5.0...v0.5.2 +[0.5.0]: https://github.com/asaaki/opentelemetry-tide/compare/v0.3.1...v0.5.0 +[0.3.1]: https://github.com/asaaki/opentelemetry-tide/compare/v0.3.0...v0.3.1 +[0.3.0]: https://github.com/asaaki/opentelemetry-tide/compare/v0.2.0...v0.3.0 +[0.2.0]: https://github.com/asaaki/opentelemetry-tide/compare/v0.1.0...v0.2.0 +[0.1.0]: https://github.com/asaaki/opentelemetry-tide/compare/v0.0.0...v0.1.0 + +[fiag]: https://github.com/fiag +[arlyon]: https://github.com/arlyon diff --git a/Cargo.toml b/Cargo.toml index 6e1e0df..2d007f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "opentelemetry-tide" -version = "0.5.2" +version = "0.6.0" authors = ["Christoph Grabo "] edition = "2018" readme = "README.md" diff --git a/README.md b/README.md index dac5971..4c19726 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ firefox http://localhost:16686/ async-std = { version = "1.8", features = ["attributes"] } opentelemetry = { version = "0.11", features = ["async-std"] } opentelemetry-jaeger = { version = "0.10", features = ["async-std"] } -opentelemetry-tide = "0.5" +opentelemetry-tide = "0.6" tide = "0.15" ```