mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-10-03 07:44:42 +00:00
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:
parent
cdce7437dc
commit
d6f740e8d7
@ -7,7 +7,7 @@ edition = "2018"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = "1"
|
serde = "1"
|
||||||
tracing-core = { version = "0.1", path = "../tracing-core" }
|
tracing-core = "0.1"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
|
@ -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)
|
# 0.1.1 (July 3, 2019)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -8,22 +8,26 @@ name = "tracing"
|
|||||||
# - 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 = ["Tokio Contributors <team@tokio.rs>"]
|
authors = ["Tokio Contributors <team@tokio.rs>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tokio-rs/tracing"
|
repository = "https://github.com/tokio-rs/tracing"
|
||||||
homepage = "https://tokio.rs"
|
homepage = "https://tokio.rs"
|
||||||
documentation = "https://docs.rs/tracing/0.1.1/tracing"
|
documentation = "https://docs.rs/tracing/0.1.2/tracing"
|
||||||
description = """
|
description = """
|
||||||
A scoped, structured logging and diagnostics system.
|
A scoped, structured logging and diagnostics system.
|
||||||
"""
|
"""
|
||||||
categories = ["development-tools::debugging", "asynchronous"]
|
categories = [
|
||||||
|
"development-tools::debugging",
|
||||||
|
"development-tools::profiling",
|
||||||
|
"asynchronous",
|
||||||
|
]
|
||||||
keywords = ["logging", "tracing"]
|
keywords = ["logging", "tracing"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tracing-core = { version = "0.1", path = "../tracing-core" }
|
tracing-core = "0.1.1"
|
||||||
log = { version = "0.4", optional = true }
|
log = { version = "0.4", optional = true }
|
||||||
cfg-if = "0.1.9"
|
cfg-if = "0.1.9"
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ First, add this to your `Cargo.toml`:
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tracing = "0.1"
|
tracing = "0.1.2"
|
||||||
```
|
```
|
||||||
|
|
||||||
This crate provides macros for creating `Span`s and `Event`s, which represent
|
This crate provides macros for creating `Span`s and `Event`s, which represent
|
||||||
|
@ -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)]
|
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
|
||||||
#![cfg_attr(test, deny(warnings))]
|
#![cfg_attr(test, deny(warnings))]
|
||||||
#![cfg_attr(feature = "doctest-readme", feature(external_doc))]
|
#![cfg_attr(feature = "doctest-readme", feature(external_doc))]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user