tracing: prepare to release 0.1.2 (#156)

### Added

- `Span::none()` constructor, which does not require metadata and
  returns a completely empty span (#147).
- `Span::current()` function, returning the current span if it is
  known to the subscriber (#148).

### Fixed

- Broken macro imports when used prefixed with `tracing::` (#152).

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2019-07-06 12:12:20 -07:00 committed by GitHub
parent cdce7437dc
commit d6f740e8d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 24 additions and 7 deletions

View File

@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
serde = "1"
tracing-core = { version = "0.1", path = "../tracing-core" }
tracing-core = "0.1"
[dev-dependencies]
serde_json = "1.0"

View File

@ -1,3 +1,16 @@
# 0.1.2 (July 6, 2019)
### Added
- `Span::none()` constructor, which does not require metadata and
returns a completely empty span (#147).
- `Span::current()` function, returning the current span if it is
known to the subscriber (#148).
### Fixed
- Broken macro imports when used prefixed with `tracing::` (#152).
# 0.1.1 (July 3, 2019)
### Changed

View File

@ -8,22 +8,26 @@ name = "tracing"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag
version = "0.1.1"
version = "0.1.2"
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.1/tracing"
documentation = "https://docs.rs/tracing/0.1.2/tracing"
description = """
A scoped, structured logging and diagnostics system.
"""
categories = ["development-tools::debugging", "asynchronous"]
categories = [
"development-tools::debugging",
"development-tools::profiling",
"asynchronous",
]
keywords = ["logging", "tracing"]
edition = "2018"
[dependencies]
tracing-core = { version = "0.1", path = "../tracing-core" }
tracing-core = "0.1.1"
log = { version = "0.4", optional = true }
cfg-if = "0.1.9"

View File

@ -47,7 +47,7 @@ First, add this to your `Cargo.toml`:
```toml
[dependencies]
tracing = "0.1"
tracing = "0.1.2"
```
This crate provides macros for creating `Span`s and `Event`s, which represent

View File

@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tracing/0.1.1")]
#![doc(html_root_url = "https://docs.rs/tracing/0.1.2")]
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
#![cfg_attr(test, deny(warnings))]
#![cfg_attr(feature = "doctest-readme", feature(external_doc))]