Skip to content

Commit

Permalink
tracing: prepare to release 0.1.6
Browse files Browse the repository at this point in the history
Added:

- `std::error::Error` as a new primitive type (#277)
- Support for mixing key-value fields and `format_args` messages without
  curly braces as delimiters (#288)

Changed:

- `tracing-core` dependency to 0.1.5 (#294)
- `tracing-attributes` dependency to 0.1.2

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
  • Loading branch information
hawkw committed Aug 20, 2019
1 parent ec19f07 commit 561c0c8
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
13 changes: 13 additions & 0 deletions tracing/CHANGELOG.md
@@ -1,3 +1,16 @@
# 0.1.6 (August 20, 2019)

### Added

- `std::error::Error` as a new primitive type (#277)
- Support for mixing key-value fields and `format_args` messages without curly
braces as delimiters (#288)

### Changed

- `tracing-core` dependency to 0.1.5 (#294)
- `tracing-attributes` dependency to 0.1.2 (#297)

# 0.1.5 (August 9, 2019)

### Added
Expand Down
8 changes: 4 additions & 4 deletions tracing/Cargo.toml
Expand Up @@ -8,23 +8,23 @@ name = "tracing"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag
version = "0.1.5"
version = "0.1.6"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tokio-rs/tracing"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tracing/0.1.5/tracing"
documentation = "https://docs.rs/tracing/0.1.6/tracing"
description = """
A scoped, structured logging and diagnostics system.
Application-level tracing for Rust.
"""
categories = [
"development-tools::debugging",
"development-tools::profiling",
"asynchronous",
"no-std",
]
keywords = ["logging", "tracing"]
keywords = ["logging", "tracing", "metrics", "async"]
edition = "2018"

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions tracing/README.md
Expand Up @@ -12,9 +12,9 @@ Application-level tracing for Rust.
[Chat][gitter-url]

[crates-badge]: https://img.shields.io/crates/v/tracing.svg
[crates-url]: https://crates.io/crates/tracing
[crates-url]: https://crates.io/crates/tracing/0.1.6
[docs-badge]: https://docs.rs/tracing/badge.svg
[docs-url]: https://docs.rs/tracing
[docs-url]: https://docs.rs/tracing/0.1.6
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
[mit-url]: LICENSE
[azure-badge]: https://dev.azure.com/tracing/tracing/_apis/build/status/tokio-rs.tracing?branchName=master
Expand Down Expand Up @@ -47,7 +47,7 @@ First, add this to your `Cargo.toml`:

```toml
[dependencies]
tracing = "0.1.5"
tracing = "0.1.6"
```

This crate provides macros for creating `Span`s and `Event`s, which represent
Expand Down
2 changes: 1 addition & 1 deletion tracing/src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tracing/0.1.5")]
#![doc(html_root_url = "https://docs.rs/tracing/0.1.6")]
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
#![cfg_attr(test, deny(warnings))]

Expand Down

0 comments on commit 561c0c8

Please sign in to comment.