-
Notifications
You must be signed in to change notification settings - Fork 741
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump all crate versions (#998)
This branch updates all crate versions to 0.2.x. After this PR merges, we can now develop `tracing`/`tracing-core` v0.2.x on `master`. There is now a separate, protected `v0.1.x` branch. Changes backported to 0.1 versions of `tracing` crates can be merged to that branch. Signed-off-by: Eliza Weisman <[email protected]>
- Loading branch information
Showing
16 changed files
with
84 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "cargo", | ||
"command": "build", | ||
"problemMatcher": [ | ||
"$rustc" | ||
], | ||
"group": "build", | ||
"label": "rust: cargo build" | ||
}, | ||
{ | ||
"type": "cargo", | ||
"command": "clippy", | ||
"args": [ | ||
"--all" | ||
], | ||
"problemMatcher": [ | ||
"$rustc" | ||
], | ||
"group": "build", | ||
"label": "rust: cargo clippy" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tracing-appender" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
authors = [ | ||
"Zeki Sherif <[email protected]>", | ||
"Tokio Contributors <[email protected]>" | ||
|
@@ -25,10 +25,10 @@ chrono = "0.4.11" | |
|
||
[dependencies.tracing-subscriber] | ||
path = "../tracing-subscriber" | ||
version = "0.2.7" | ||
version = "0.3" | ||
default-features = false | ||
features = ["fmt"] | ||
|
||
[dev-dependencies] | ||
tracing = { path = "../tracing", version = "0.1" } | ||
tracing = { path = "../tracing", version = "0.2" } | ||
tempdir = "0.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ name = "tracing-attributes" | |
# - Cargo.toml | ||
# - README.md | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.1.x" git tag. | ||
version = "0.1.11" | ||
# - Create "v0.2.x" git tag. | ||
version = "0.2.0" | ||
authors = [ | ||
"Tokio Contributors <[email protected]>", | ||
"Eliza Weisman <[email protected]>", | ||
|
@@ -32,21 +32,16 @@ edition = "2018" | |
[lib] | ||
proc-macro = true | ||
|
||
[features] | ||
|
||
# This feature flag is no longer necessary. | ||
async-await = [] | ||
|
||
[dependencies] | ||
proc-macro2 = "1" | ||
syn = { version = "1", default-features = false, features = ["full", "parsing", "printing", "visit-mut", "clone-impls", "extra-traits", "proc-macro"] } | ||
quote = "1" | ||
|
||
|
||
[dev-dependencies] | ||
tracing = { path = "../tracing", version = "0.1" } | ||
tracing = { path = "../tracing", version = "0.2" } | ||
tokio-test = { version = "0.2.0" } | ||
tracing-core = { path = "../tracing-core", version = "0.1"} | ||
tracing-core = { path = "../tracing-core", version = "0.2"} | ||
async-trait = "0.1" | ||
|
||
[badges] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ name = "tracing-core" | |
# - Cargo.toml | ||
# - README.md | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.1.x" git tag. | ||
version = "0.1.17" | ||
# - Create "v0.2.x" git tag. | ||
version = "0.2.0" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ name = "tracing-error" | |
# - Cargo.toml | ||
# - README.md | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.1.x" git tag | ||
version = "0.1.2" | ||
# - Create "v0.2.x" git tag | ||
version = "0.2.0" | ||
authors = [ | ||
"Eliza Weisman <[email protected]>", | ||
"Jane Lusby <[email protected]>", | ||
|
@@ -38,8 +38,8 @@ default = ["traced-error"] | |
traced-error = [] | ||
|
||
[dependencies] | ||
tracing-subscriber = { path = "../tracing-subscriber", version = "0.2.7", default-features = false, features = ["registry", "fmt"] } | ||
tracing = { path = "../tracing", version = "0.1.12"} | ||
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3", default-features = false, features = ["registry", "fmt"] } | ||
tracing = { path = "../tracing", version = "0.2"} | ||
|
||
[badges] | ||
maintenance = { status = "experimental" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tracing-flame" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = [ | ||
"Jane Lusby <[email protected]>", | ||
"Tokio Contributors <[email protected]>" | ||
|
@@ -25,8 +25,8 @@ default = ["smallvec"] | |
smallvec = ["tracing-subscriber/smallvec"] | ||
|
||
[dependencies] | ||
tracing-subscriber = { path = "../tracing-subscriber", version = "0.2.3", default-features = false, features = ["registry", "fmt"] } | ||
tracing = { path = "../tracing", version = "0.1.12"} | ||
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3", default-features = false, features = ["registry", "fmt"] } | ||
tracing = { path = "../tracing", version = "0.2"} | ||
lazy_static = "1.3.0" | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tracing-futures" | ||
version = "0.2.6" | ||
version = "0.3.0" | ||
authors = ["Eliza Weisman <[email protected]>", "Tokio Contributors <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/tokio-rs/tracing" | ||
|
@@ -29,14 +29,14 @@ futures_01 = { package = "futures", version = "0.1", optional = true } | |
futures = { version = "0.3.0", optional = true } | ||
futures-task = { version = "0.3", optional = true } | ||
pin-project = { version = "0.4", optional = true } | ||
tracing = { path = "../tracing", version = "0.1", default-features = false } | ||
tracing = { path = "../tracing", version = "0.2", default-features = false } | ||
tokio-executor = { version = "0.1", optional = true } | ||
tokio = { version = "0.1", optional = true } | ||
|
||
[dev-dependencies] | ||
tokio = "0.1.22" | ||
tokio-test = "0.2" | ||
tracing-core = { path = "../tracing-core", version = "0.1.2" } | ||
tracing-core = { path = "../tracing-core", version = "0.2" } | ||
|
||
[badges] | ||
maintenance = { status = "actively-developed" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tracing-journald" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Benjamin Saunders <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -15,5 +15,5 @@ categories = [ | |
keywords = ["tracing", "journald"] | ||
|
||
[dependencies] | ||
tracing-core = { path = "../tracing-core", version = "0.1.10" } | ||
tracing-subscriber = { path = "../tracing-subscriber", version = "0.2.5" } | ||
tracing-core = { path = "../tracing-core", version = "0.2" } | ||
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tracing-log" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/tokio-rs/tracing" | ||
|
@@ -23,13 +23,13 @@ log-tracer = [] | |
trace-logger = [] | ||
|
||
[dependencies] | ||
tracing-core = { path = "../tracing-core", version = "0.1.17"} | ||
tracing-core = { path = "../tracing-core", version = "0.2"} | ||
log = { version = "0.4" } | ||
lazy_static = "1.3.0" | ||
env_logger = { version = "0.7", optional = true } | ||
|
||
[dev-dependencies] | ||
tracing = { path = "../tracing", version = "0.1"} | ||
tracing = { path = "../tracing", version = "0.2"} | ||
|
||
[badges] | ||
maintenance = { status = "actively-maintained" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tracing-opentelemetry" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
authors = [ | ||
"Julian Tescher <[email protected]>", | ||
"Tokio Contributors <[email protected]>" | ||
|
@@ -24,10 +24,10 @@ default = ["tracing-log"] | |
[dependencies] | ||
opentelemetry = { version = "0.8", default-features = false, features = ["trace"] } | ||
rand = "0.7" | ||
tracing = { path = "../tracing", version = "0.1" } | ||
tracing-core = { path = "../tracing-core", version = "0.1" } | ||
tracing-subscriber = { path = "../tracing-subscriber", version = "0.2", default-features = false, features = ["registry"] } | ||
tracing-log = { path = "../tracing-log", version = "0.1", default-features = false, optional = true } | ||
tracing = { path = "../tracing", version = "0.2" } | ||
tracing-core = { path = "../tracing-core", version = "0.2" } | ||
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3", default-features = false, features = ["registry"] } | ||
tracing-log = { path = "../tracing-log", version = "0.2", default-features = false, optional = true } | ||
|
||
[dev-dependencies] | ||
opentelemetry-jaeger = "0.7" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tracing-serde" | ||
version = "0.1.2" | ||
version = "0.2.0" | ||
authors = ["Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
edition = "2018" | ||
|
@@ -19,7 +19,7 @@ keywords = ["logging", "tracing", "serialization"] | |
|
||
[dependencies] | ||
serde = "1" | ||
tracing-core = { path = "../tracing-core", version = "0.1.2"} | ||
tracing-core = { path = "../tracing-core", version = "0.2"} | ||
|
||
[dev-dependencies] | ||
serde_json = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tracing-subscriber" | ||
version = "0.2.12" | ||
version = "0.3.0" | ||
authors = [ | ||
"Eliza Weisman <[email protected]>", | ||
"David Barsky <[email protected]>", | ||
|
@@ -31,7 +31,7 @@ registry = ["sharded-slab", "thread_local"] | |
json = ["tracing-serde", "serde", "serde_json"] | ||
|
||
[dependencies] | ||
tracing-core = { path = "../tracing-core", version = "0.1.17" } | ||
tracing-core = { path = "../tracing-core", version = "0.2" } | ||
|
||
# only required by the filter feature | ||
matchers = { optional = true, version = "0.0.1" } | ||
|
@@ -40,14 +40,14 @@ smallvec = { optional = true, version = "1" } | |
lazy_static = { optional = true, version = "1" } | ||
|
||
# fmt | ||
tracing-log = { path = "../tracing-log", version = "0.1", optional = true, default-features = false, features = ["log-tracer", "std"] } | ||
tracing-log = { path = "../tracing-log", version = "0.2", optional = true, default-features = false, features = ["log-tracer", "std"] } | ||
ansi_term = { version = "0.12", optional = true } | ||
chrono = { version = "0.4", optional = true } | ||
|
||
# only required by the json feature | ||
serde_json = { version = "1.0", optional = true } | ||
serde = { version = "1.0", optional = true } | ||
tracing-serde = { path = "../tracing-serde", version = "0.1.2", optional = true } | ||
tracing-serde = { path = "../tracing-serde", version = "0.2", optional = true } | ||
|
||
# opt-in deps | ||
parking_lot = { version = ">= 0.7, <= 0.11", optional = true } | ||
|
@@ -57,12 +57,12 @@ sharded-slab = { version = "^0.0.9", optional = true } | |
thread_local = { version = "1.0.1", optional = true } | ||
|
||
[dev-dependencies] | ||
tracing = { path = "../tracing", version = "0.1" } | ||
tracing = { path = "../tracing", version = "0.2" } | ||
log = "0.4" | ||
tracing-log = { path = "../tracing-log", version = "0.1" } | ||
tracing-log = { path = "../tracing-log", version = "0.2" } | ||
criterion = { version = "0.3", default_features = false } | ||
regex = { version = "1", default-features = false, features = ["std"] } | ||
tracing-futures = { path = "../tracing-futures", version = "0.2", default-features = false, features = ["std-future", "std"] } | ||
tracing-futures = { path = "../tracing-futures", version = "0.3", default-features = false, features = ["std-future", "std"] } | ||
tokio = { version = "0.2", features = ["rt-core", "macros"] } | ||
|
||
[badges] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ name = "tracing" | |
# - Cargo.toml | ||
# - README.md | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.1.x" git tag | ||
version = "0.1.21" | ||
# - Create "v0.2.x" git tag | ||
version = "0.2.0" | ||
authors = ["Eliza Weisman <[email protected]>", "Tokio Contributors <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
|
@@ -27,9 +27,9 @@ keywords = ["logging", "tracing", "metrics", "async"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
tracing-core = { path = "../tracing-core", version = "0.1.17", default-features = false } | ||
tracing-core = { path = "../tracing-core", version = "0.2", default-features = false } | ||
log = { version = "0.4", optional = true } | ||
tracing-attributes = { path = "../tracing-attributes", version = "0.1.10", optional = true } | ||
tracing-attributes = { path = "../tracing-attributes", version = "0.2", optional = true } | ||
cfg-if = "0.1.10" | ||
pin-project-lite = "0.1" | ||
|
||
|