Skip to content

Commit d8faed6

Browse files
committed
tracing: prepare to release 0.1.6
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 <[email protected]>
1 parent f411915 commit d8faed6

File tree

4 files changed

+21
-8
lines changed

4 files changed

+21
-8
lines changed

tracing/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 0.1.6 (August 20, 2019)
2+
3+
### Added
4+
5+
- `std::error::Error` as a new primitive type (#277)
6+
- Support for mixing key-value fields and `format_args` messages without curly
7+
braces as delimiters (#288)
8+
9+
### Changed
10+
11+
- `tracing-core` dependency to 0.1.5 (#294)
12+
- `tracing-attributes` dependency to 0.1.2 (#297)
13+
114
# 0.1.5 (August 9, 2019)
215

316
### Added

tracing/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ name = "tracing"
88
# - README.md
99
# - Update CHANGELOG.md.
1010
# - Create "v0.1.x" git tag
11-
version = "0.1.5"
11+
version = "0.1.6"
1212
authors = ["Tokio Contributors <[email protected]>"]
1313
license = "MIT"
1414
readme = "README.md"
1515
repository = "https://github.com/tokio-rs/tracing"
1616
homepage = "https://tokio.rs"
17-
documentation = "https://docs.rs/tracing/0.1.5/tracing"
17+
documentation = "https://docs.rs/tracing/0.1.6/tracing"
1818
description = """
19-
A scoped, structured logging and diagnostics system.
19+
Application-level tracing for Rust.
2020
"""
2121
categories = [
2222
"development-tools::debugging",
2323
"development-tools::profiling",
2424
"asynchronous",
2525
"no-std",
2626
]
27-
keywords = ["logging", "tracing"]
27+
keywords = ["logging", "tracing", "metrics", "async"]
2828
edition = "2018"
2929

3030
[dependencies]

tracing/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Application-level tracing for Rust.
1212
[Chat][gitter-url]
1313

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

4848
```toml
4949
[dependencies]
50-
tracing = "0.1.5"
50+
tracing = "0.1.6"
5151
```
5252

5353
This crate provides macros for creating `Span`s and `Event`s, which represent

tracing/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/tracing/0.1.5")]
1+
#![doc(html_root_url = "https://docs.rs/tracing/0.1.6")]
22
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
33
#![cfg_attr(test, deny(warnings))]
44

0 commit comments

Comments
 (0)