Prepare for 0.2 release

This commit is contained in:
Jane Lusby 2022-01-12 15:53:26 -08:00
parent 58b8be7e95
commit c0ec5ffeec
4 changed files with 11 additions and 9 deletions

View File

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- next-header -->
## [Unreleased] - ReleaseDate
### Changed
- Updated dependency versions to match latest tracing versions
## [0.1.6] - 2020-12-02
### Fixed

View File

@ -27,7 +27,7 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[package.metadata.release]
no-dev-version = true
dev-version = false
[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"

View File

@ -17,10 +17,10 @@ Add the following to your `Cargo.toml`:
```toml
[dependencies]
color-spantrace = "0.1"
tracing = "0.1.13"
tracing-error = "0.1.2"
tracing-subscriber = "0.2.5"
color-spantrace = "0.2"
tracing = "0.1"
tracing-error = "0.2"
tracing-subscriber = "0.3"
```
Setup a tracing subscriber with an `ErrorLayer`:

View File

@ -7,10 +7,10 @@
//!
//! ```toml
//! [dependencies]
//! color-spantrace = "0.1"
//! tracing = "0.1.13"
//! tracing-error = "0.1.2"
//! tracing-subscriber = "0.2.5"
//! color-spantrace = "0.2"
//! tracing = "0.1"
//! tracing-error = "0.2"
//! tracing-subscriber = "0.3"
//! ```
//!
//! Setup a tracing subscriber with an `ErrorLayer`: