error: prepare to release 0.1.2 (#621)

### Added

- **TracedError**: `TracedError`, an error type wrapper that annotates
  an error with the current span.
- **SpanTrace**:`SpanTrace::status` method and `SpanTraceStatus` type
  for determing whether a `SpanTrace` was successfully captured (#614)

### Changed

- **SpanTrace**: Made backtrace formatting more consistent with upstream
  changes to `std::backtrace` (#584)

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2020-03-04 10:21:46 -08:00 committed by GitHub
parent f58fb21fe7
commit a0adec01b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 7 deletions

View File

@ -1,7 +1,26 @@
# 0.1.2 (March 3, 2020)
### Added
- **TracedError**: `TracedError`, an error type wrapper that annotates an error
with the current span.
- **SpanTrace**:`SpanTrace::status` method and `SpanTraceStatus` type for
determing whether a `SpanTrace` was successfully captured (#614)
### Changed
- **SpanTrace**: Made backtrace formatting more consistent with upstream changes
to `std::backtrace` (#584)
# 0.1.1 (February 5, 2020) # 0.1.1 (February 5, 2020)
### Fixed
- Fixed a typo in the crate description - Fixed a typo in the crate description
- Changed the maintenance badge from active to experimental
### Changed
- the maintenance badge from active to experimental
# 0.1.0 (February 5, 2020) # 0.1.0 (February 5, 2020)

View File

@ -8,7 +8,7 @@ name = "tracing-error"
# - README.md # - README.md
# - Update CHANGELOG.md. # - Update CHANGELOG.md.
# - Create "v0.1.x" git tag # - Create "v0.1.x" git tag
version = "0.1.1" version = "0.1.2"
authors = [ authors = [
"Eliza Weisman <eliza@buoyant.io>", "Eliza Weisman <eliza@buoyant.io>",
"Jane Lusby <jlusby@yaah.dev>", "Jane Lusby <jlusby@yaah.dev>",

View File

@ -13,9 +13,9 @@ Utilities for instrumenting errors with [`tracing`].
[Documentation (release)][docs-url] | [Documentation (master)][docs-master-url] | [Chat][discord-url] [Documentation (release)][docs-url] | [Documentation (master)][docs-master-url] | [Chat][discord-url]
[crates-badge]: https://img.shields.io/crates/v/tracing-error.svg [crates-badge]: https://img.shields.io/crates/v/tracing-error.svg
[crates-url]: https://crates.io/crates/tracing-error/0.1.0 [crates-url]: https://crates.io/crates/tracing-error/0.1.2
[docs-badge]: https://docs.rs/tracing-error/badge.svg [docs-badge]: https://docs.rs/tracing-error/badge.svg
[docs-url]: https://docs.rs/tracing-error/0.1.0/tracing_error [docs-url]: https://docs.rs/tracing-error/0.1.2/tracing_error
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue [docs-master-badge]: https://img.shields.io/badge/docs-master-blue
[docs-master-url]: https://tracing-rs.netlify.com/tracing_error [docs-master-url]: https://tracing-rs.netlify.com/tracing_error
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
@ -108,8 +108,8 @@ fn main() {
} }
``` ```
[`SpanTrace`]: https://docs.rs/tracing-error/0.1.0/tracing_error/struct.SpanTrace.html [`SpanTrace`]: https://docs.rs/tracing-error/0.1.2/tracing_error/struct.SpanTrace.html
[`ErrorLayer`]: https://docs.rs/tracing-error/0.1.0/tracing_error/struct.ErrorLayer.html [`ErrorLayer`]: https://docs.rs/tracing-error/0.1.2/tracing_error/struct.ErrorLayer.html
[span]: https://docs.rs/tracing/latest/tracing/span/index.html [span]: https://docs.rs/tracing/latest/tracing/span/index.html
[event]: https://docs.rs/tracing/latest/tracing/struct.Event.html [event]: https://docs.rs/tracing/latest/tracing/struct.Event.html
[subscriber layer]: https://docs.rs/tracing-subscriber/latest/tracing_subscriber/layer/trait.Layer.html [subscriber layer]: https://docs.rs/tracing-subscriber/latest/tracing_subscriber/layer/trait.Layer.html

View File

@ -168,7 +168,7 @@
//! [`tracing`]: https://docs.rs/tracing //! [`tracing`]: https://docs.rs/tracing
//! [`std::error::Error`]: https://doc.rust-lang.org/stable/std/error/trait.Error.html //! [`std::error::Error`]: https://doc.rust-lang.org/stable/std/error/trait.Error.html
#![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_root_url = "https://docs.rs/tracing-error/0.1.1")] #![doc(html_root_url = "https://docs.rs/tracing-error/0.1.2")]
#![warn( #![warn(
missing_debug_implementations, missing_debug_implementations,
missing_docs, missing_docs,