Skip to content

Commit 800df74

Browse files
authored
tracing: prepare to release 0.1.3 (#181)
# 0.1.3 (July 11, 2019) ### Added - Log messages when a subscriber indicates that a span has closed, when the `log` feature flag is enabled (#180). ### Changed - `tracing-core` minimum dependency version to 0.1.2 (#174). ### Fixed - Fixed an issue where event macro invocations with a single field, using local variable shorthand, would recur infinitely (#166). - Fixed uses of deprecated `tracing-core` APIs (#174). Signed-off-by: Eliza Weisman <[email protected]>
1 parent 45bf1ee commit 800df74

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

tracing/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# 0.1.3 (July 11, 2019)
2+
3+
### Added
4+
5+
- Log messages when a subscriber indicates that a span has closed, when the
6+
`log` feature flag is enabled (#180).
7+
8+
### Changed
9+
10+
- `tracing-core` minimum dependency version to 0.1.2 (#174).
11+
12+
### Fixed
13+
14+
- Fixed an issue where event macro invocations with a single field, using local
15+
variable shorthand, would recur infinitely (#166).
16+
- Fixed uses of deprecated `tracing-core` APIs (#174).
17+
118
# 0.1.2 (July 6, 2019)
219

320
### Added

tracing/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ name = "tracing"
88
# - README.md
99
# - Update CHANGELOG.md.
1010
# - Create "v0.1.x" git tag
11-
version = "0.1.2"
11+
version = "0.1.3"
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.2/tracing"
17+
documentation = "https://docs.rs/tracing/0.1.3/tracing"
1818
description = """
1919
A scoped, structured logging and diagnostics system.
2020
"""

tracing/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/tracing/0.1.2")]
1+
#![doc(html_root_url = "https://docs.rs/tracing/0.1.3")]
22
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
33
#![cfg_attr(test, deny(warnings))]
44
#![cfg_attr(feature = "doctest-readme", feature(external_doc))]

0 commit comments

Comments
 (0)