Skip to content

Commit

Permalink
Merge pull request #18 from yaahc/release
Browse files Browse the repository at this point in the history
Prepare for 0.2 release
  • Loading branch information
yaahc committed Jan 13, 2022
2 parents 58b8be7 + 1553836 commit ac0cbcc
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - ReleaseDate

## [0.2.0] - 2022-01-12
### Changed
- Updated dependency versions to match latest tracing versions

## [0.1.6] - 2020-12-02
### Fixed
- Ignore all io errors when resolving source files instead of only file not
Expand All @@ -18,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Support custom color themes for spantrace format

<!-- next-url -->
[Unreleased]: https://github.com/yaahc/color-spantrace/compare/v0.1.6...HEAD
[Unreleased]: https://github.com/yaahc/color-spantrace/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/yaahc/color-spantrace/compare/v0.1.6...v0.2.0
[0.1.6]: https://github.com/yaahc/color-spantrace/compare/v0.1.5...v0.1.6
[v0.1.5]: https://github.com/yaahc/color-spantrace/releases/tag/v0.1.5
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "color-spantrace"
version = "0.1.6"
version = "0.2.0"
authors = ["Jane Lusby <jlusby@yaah.dev>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
10 changes: 5 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down Expand Up @@ -59,7 +59,7 @@
//!
//! [`tracing_error::SpanTrace`]: https://docs.rs/tracing-error/*/tracing_error/struct.SpanTrace.html
//! [`color-backtrace`]: https://github.com/athre0z/color-backtrace
#![doc(html_root_url = "https://docs.rs/color-spantrace/0.1.6")]
#![doc(html_root_url = "https://docs.rs/color-spantrace/0.2.0")]
#![warn(
missing_debug_implementations,
missing_docs,
Expand Down

0 comments on commit ac0cbcc

Please sign in to comment.