prepare to release tracing 0.1.1 (#145)

This branch prepares tracing to release version 0.1.1, to get the
 fixes for log support out.

* update changelog
* update version
* bump tracing version too

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2019-07-03 14:10:50 -07:00 committed by GitHub
parent 872d893333
commit 46d3da806f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 4 deletions

View File

@ -1,3 +1,14 @@
# 0.1.1 (July 3, 2019)
### Changed
- `cfg_if` dependency to 0.1.9.
### Fixed
- Compilation errors when the `log` feature is enabled (#131).
- Unclear wording and typos in documentation (#124, #128, #142).
# 0.1.0 (June 27, 2019)
- Initial release

View File

@ -8,13 +8,13 @@ name = "tracing"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag
version = "0.1.0"
version = "0.1.1"
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.0/tracing"
documentation = "https://docs.rs/tracing/0.1.1/tracing"
description = """
A scoped, structured logging and diagnostics system.
"""
@ -25,7 +25,7 @@ edition = "2018"
[dependencies]
tracing-core = { version = "0.1", path = "../tracing-core" }
log = { version = "0.4", optional = true }
cfg-if = "0.1.7"
cfg-if = "0.1.9"
[dev-dependencies]
ansi_term = "0.11"

View File

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