Skip to content

Commit e5b3607

Browse files
committed
bump all crate versions
Signed-off-by: Eliza Weisman <eliza@buoyant.io>
1 parent 386969b commit e5b3607

File tree

16 files changed

+84
-56
lines changed

16 files changed

+84
-56
lines changed

.vscode/tasks.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "cargo",
6+
"command": "build",
7+
"problemMatcher": [
8+
"$rustc"
9+
],
10+
"group": "build",
11+
"label": "rust: cargo build"
12+
},
13+
{
14+
"type": "cargo",
15+
"command": "clippy",
16+
"args": [
17+
"--all"
18+
],
19+
"problemMatcher": [
20+
"$rustc"
21+
],
22+
"group": "build",
23+
"label": "rust: cargo clippy"
24+
}
25+
]
26+
}

examples/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ default = []
1010
[dev-dependencies]
1111

1212
# tracing crates
13-
tracing = { path = "../tracing", version = "0.1"}
14-
tracing-core = { path = "../tracing-core", version = "0.1"}
13+
tracing = { path = "../tracing", version = "0.2"}
14+
tracing-core = { path = "../tracing-core", version = "0.2"}
1515
tracing-error = { path = "../tracing-error" }
1616
tracing-flame = { path = "../tracing-flame" }
1717
tracing-tower = { version = "0.1.0", path = "../tracing-tower" }
18-
tracing-subscriber = { path = "../tracing-subscriber", version = "0.2.12", features = ["json", "chrono"] }
19-
tracing-futures = { version = "0.2.1", path = "../tracing-futures", features = ["futures-01"] }
20-
tracing-attributes = { path = "../tracing-attributes", version = "0.1.2"}
21-
tracing-log = { path = "../tracing-log", version = "0.1.1", features = ["env_logger"] }
18+
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3", features = ["json", "chrono"] }
19+
tracing-futures = { version = "0.3", path = "../tracing-futures", features = ["futures-01"] }
20+
tracing-attributes = { path = "../tracing-attributes", version = "0.2"}
21+
tracing-log = { path = "../tracing-log", version = "0.2", features = ["env_logger"] }
2222
tracing-serde = { path = "../tracing-serde" }
2323
tracing-opentelemetry = { path = "../tracing-opentelemetry" }
2424
tracing-journald = { path = "../tracing-journald" }

examples/examples/all-levels.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
use tracing::Level;
22

3+
#[no_mangle]
4+
#[inline(never)]
5+
pub fn event() {
6+
tracing::info!("general informational messages relevant to users");
7+
}
8+
39
fn main() {
410
tracing_subscriber::fmt()
511
// all spans/events with a level higher than TRACE (e.g, info, warn, etc.)
612
// will be written to stdout.
713
.with_max_level(Level::TRACE)
814
// sets this to be the default, global subscriber for this application.
915
.init();
16+
event();
1017

1118
tracing::error!("SOMETHING IS SERIOUSLY WRONG!!!");
1219
tracing::warn!("important informational messages; might indicate an error");

tracing-appender/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-appender"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
authors = [
55
"Zeki Sherif <zekshi@amazon.com>",
66
"Tokio Contributors <team@tokio.rs>"
@@ -25,10 +25,10 @@ chrono = "0.4.11"
2525

2626
[dependencies.tracing-subscriber]
2727
path = "../tracing-subscriber"
28-
version = "0.2.7"
28+
version = "0.3"
2929
default-features = false
3030
features = ["fmt"]
3131

3232
[dev-dependencies]
33-
tracing = { path = "../tracing", version = "0.1" }
33+
tracing = { path = "../tracing", version = "0.2" }
3434
tempdir = "0.3"

tracing-attributes/Cargo.toml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ name = "tracing-attributes"
77
# - Cargo.toml
88
# - README.md
99
# - Update CHANGELOG.md.
10-
# - Create "v0.1.x" git tag.
11-
version = "0.1.11"
10+
# - Create "v0.2.x" git tag.
11+
version = "0.2.0"
1212
authors = [
1313
"Tokio Contributors <team@tokio.rs>",
1414
"Eliza Weisman <eliza@buoyant.io>",
@@ -32,21 +32,16 @@ edition = "2018"
3232
[lib]
3333
proc-macro = true
3434

35-
[features]
36-
37-
# This feature flag is no longer necessary.
38-
async-await = []
39-
4035
[dependencies]
4136
proc-macro2 = "1"
4237
syn = { version = "1", default-features = false, features = ["full", "parsing", "printing", "visit-mut", "clone-impls", "extra-traits", "proc-macro"] }
4338
quote = "1"
4439

4540

4641
[dev-dependencies]
47-
tracing = { path = "../tracing", version = "0.1" }
42+
tracing = { path = "../tracing", version = "0.2" }
4843
tokio-test = { version = "0.2.0" }
49-
tracing-core = { path = "../tracing-core", version = "0.1"}
44+
tracing-core = { path = "../tracing-core", version = "0.2"}
5045
async-trait = "0.1"
5146

5247
[badges]

tracing-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ name = "tracing-core"
77
# - Cargo.toml
88
# - README.md
99
# - Update CHANGELOG.md.
10-
# - Create "v0.1.x" git tag.
11-
version = "0.1.17"
10+
# - Create "v0.2.x" git tag.
11+
version = "0.2.0"
1212
authors = ["Tokio Contributors <team@tokio.rs>"]
1313
license = "MIT"
1414
readme = "README.md"

tracing-error/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ name = "tracing-error"
77
# - Cargo.toml
88
# - README.md
99
# - Update CHANGELOG.md.
10-
# - Create "v0.1.x" git tag
11-
version = "0.1.2"
10+
# - Create "v0.2.x" git tag
11+
version = "0.2.0"
1212
authors = [
1313
"Eliza Weisman <eliza@buoyant.io>",
1414
"Jane Lusby <jlusby@yaah.dev>",
@@ -38,8 +38,8 @@ default = ["traced-error"]
3838
traced-error = []
3939

4040
[dependencies]
41-
tracing-subscriber = { path = "../tracing-subscriber", version = "0.2.7", default-features = false, features = ["registry", "fmt"] }
42-
tracing = { path = "../tracing", version = "0.1.12"}
41+
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3", default-features = false, features = ["registry", "fmt"] }
42+
tracing = { path = "../tracing", version = "0.2"}
4343

4444
[badges]
4545
maintenance = { status = "experimental" }

tracing-flame/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-flame"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = [
55
"Jane Lusby <jlusby@yaah.dev>",
66
"Tokio Contributors <team@tokio.rs>"
@@ -25,8 +25,8 @@ default = ["smallvec"]
2525
smallvec = ["tracing-subscriber/smallvec"]
2626

2727
[dependencies]
28-
tracing-subscriber = { path = "../tracing-subscriber", version = "0.2.3", default-features = false, features = ["registry", "fmt"] }
29-
tracing = { path = "../tracing", version = "0.1.12"}
28+
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3", default-features = false, features = ["registry", "fmt"] }
29+
tracing = { path = "../tracing", version = "0.2"}
3030
lazy_static = "1.3.0"
3131

3232
[dev-dependencies]

tracing-futures/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-futures"
3-
version = "0.2.6"
3+
version = "0.3.0"
44
authors = ["Eliza Weisman <eliza@buoyant.io>", "Tokio Contributors <team@tokio.rs>"]
55
edition = "2018"
66
repository = "https://github.com/tokio-rs/tracing"
@@ -29,14 +29,14 @@ futures_01 = { package = "futures", version = "0.1", optional = true }
2929
futures = { version = "0.3.0", optional = true }
3030
futures-task = { version = "0.3", optional = true }
3131
pin-project = { version = "0.4", optional = true }
32-
tracing = { path = "../tracing", version = "0.1", default-features = false }
32+
tracing = { path = "../tracing", version = "0.2", default-features = false }
3333
tokio-executor = { version = "0.1", optional = true }
3434
tokio = { version = "0.1", optional = true }
3535

3636
[dev-dependencies]
3737
tokio = "0.1.22"
3838
tokio-test = "0.2"
39-
tracing-core = { path = "../tracing-core", version = "0.1.2" }
39+
tracing-core = { path = "../tracing-core", version = "0.2" }
4040

4141
[badges]
4242
maintenance = { status = "actively-developed" }

tracing-journald/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-journald"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Benjamin Saunders <ben.e.saunders@gmail.com>"]
55
edition = "2018"
66
license = "MIT"
@@ -15,5 +15,5 @@ categories = [
1515
keywords = ["tracing", "journald"]
1616

1717
[dependencies]
18-
tracing-core = { path = "../tracing-core", version = "0.1.10" }
19-
tracing-subscriber = { path = "../tracing-subscriber", version = "0.2.5" }
18+
tracing-core = { path = "../tracing-core", version = "0.2" }
19+
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3" }

tracing-log/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-log"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
authors = ["Tokio Contributors <team@tokio.rs>"]
55
edition = "2018"
66
repository = "https://github.com/tokio-rs/tracing"
@@ -23,13 +23,13 @@ log-tracer = []
2323
trace-logger = []
2424

2525
[dependencies]
26-
tracing-core = { path = "../tracing-core", version = "0.1.17"}
26+
tracing-core = { path = "../tracing-core", version = "0.2"}
2727
log = { version = "0.4" }
2828
lazy_static = "1.3.0"
2929
env_logger = { version = "0.7", optional = true }
3030

3131
[dev-dependencies]
32-
tracing = { path = "../tracing", version = "0.1"}
32+
tracing = { path = "../tracing", version = "0.2"}
3333

3434
[badges]
3535
maintenance = { status = "actively-maintained" }

tracing-opentelemetry/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-opentelemetry"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = [
55
"Julian Tescher <julian@tescher.me>",
66
"Tokio Contributors <team@tokio.rs>"
@@ -24,10 +24,10 @@ default = ["tracing-log"]
2424
[dependencies]
2525
opentelemetry = { version = "0.8", default-features = false, features = ["trace"] }
2626
rand = "0.7"
27-
tracing = { path = "../tracing", version = "0.1" }
28-
tracing-core = { path = "../tracing-core", version = "0.1" }
29-
tracing-subscriber = { path = "../tracing-subscriber", version = "0.2", default-features = false, features = ["registry"] }
30-
tracing-log = { path = "../tracing-log", version = "0.1", default-features = false, optional = true }
27+
tracing = { path = "../tracing", version = "0.2" }
28+
tracing-core = { path = "../tracing-core", version = "0.2" }
29+
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3", default-features = false, features = ["registry"] }
30+
tracing-log = { path = "../tracing-log", version = "0.2", default-features = false, optional = true }
3131

3232
[dev-dependencies]
3333
opentelemetry-jaeger = "0.7"

tracing-serde/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-serde"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
authors = ["Tokio Contributors <team@tokio.rs>"]
55
license = "MIT"
66
edition = "2018"
@@ -19,7 +19,7 @@ keywords = ["logging", "tracing", "serialization"]
1919

2020
[dependencies]
2121
serde = "1"
22-
tracing-core = { path = "../tracing-core", version = "0.1.2"}
22+
tracing-core = { path = "../tracing-core", version = "0.2"}
2323

2424
[dev-dependencies]
2525
serde_json = "1"

tracing-subscriber/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-subscriber"
3-
version = "0.2.12"
3+
version = "0.3.0"
44
authors = [
55
"Eliza Weisman <eliza@buoyant.io>",
66
"David Barsky <me@davidbarsky.com>",
@@ -31,7 +31,7 @@ registry = ["sharded-slab", "thread_local"]
3131
json = ["tracing-serde", "serde", "serde_json"]
3232

3333
[dependencies]
34-
tracing-core = { path = "../tracing-core", version = "0.1.17" }
34+
tracing-core = { path = "../tracing-core", version = "0.2" }
3535

3636
# only required by the filter feature
3737
matchers = { optional = true, version = "0.0.1" }
@@ -40,14 +40,14 @@ smallvec = { optional = true, version = "1" }
4040
lazy_static = { optional = true, version = "1" }
4141

4242
# fmt
43-
tracing-log = { path = "../tracing-log", version = "0.1", optional = true, default-features = false, features = ["log-tracer", "std"] }
43+
tracing-log = { path = "../tracing-log", version = "0.2", optional = true, default-features = false, features = ["log-tracer", "std"] }
4444
ansi_term = { version = "0.12", optional = true }
4545
chrono = { version = "0.4", optional = true }
4646

4747
# only required by the json feature
4848
serde_json = { version = "1.0", optional = true }
4949
serde = { version = "1.0", optional = true }
50-
tracing-serde = { path = "../tracing-serde", version = "0.1.2", optional = true }
50+
tracing-serde = { path = "../tracing-serde", version = "0.2", optional = true }
5151

5252
# opt-in deps
5353
parking_lot = { version = ">= 0.7, <= 0.11", optional = true }
@@ -57,12 +57,12 @@ sharded-slab = { version = "^0.0.9", optional = true }
5757
thread_local = { version = "1.0.1", optional = true }
5858

5959
[dev-dependencies]
60-
tracing = { path = "../tracing", version = "0.1" }
60+
tracing = { path = "../tracing", version = "0.2" }
6161
log = "0.4"
62-
tracing-log = { path = "../tracing-log", version = "0.1" }
62+
tracing-log = { path = "../tracing-log", version = "0.2" }
6363
criterion = { version = "0.3", default_features = false }
6464
regex = { version = "1", default-features = false, features = ["std"] }
65-
tracing-futures = { path = "../tracing-futures", version = "0.2", default-features = false, features = ["std-future", "std"] }
65+
tracing-futures = { path = "../tracing-futures", version = "0.3", default-features = false, features = ["std-future", "std"] }
6666
tokio = { version = "0.2", features = ["rt-core", "macros"] }
6767

6868
[badges]

tracing-tower/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ tower-make = [
2424
]
2525

2626
[dependencies]
27-
tracing = { path = "../tracing", version = "0.1"}
28-
tracing-futures = { version = "0.2.1", path = "../tracing-futures", features = ["std-future"] }
27+
tracing = { path = "../tracing", version = "0.2"}
28+
tracing-futures = { version = "0.3", path = "../tracing-futures", features = ["std-future"] }
2929
futures = "0.3"
3030
tower-service = "0.3"
3131
tower-layer = { version = "0.3", optional = true }

tracing/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ name = "tracing"
77
# - Cargo.toml
88
# - README.md
99
# - Update CHANGELOG.md.
10-
# - Create "v0.1.x" git tag
11-
version = "0.1.21"
10+
# - Create "v0.2.x" git tag
11+
version = "0.2.0"
1212
authors = ["Eliza Weisman <eliza@buoyant.io>", "Tokio Contributors <team@tokio.rs>"]
1313
license = "MIT"
1414
readme = "README.md"
@@ -27,9 +27,9 @@ keywords = ["logging", "tracing", "metrics", "async"]
2727
edition = "2018"
2828

2929
[dependencies]
30-
tracing-core = { path = "../tracing-core", version = "0.1.17", default-features = false }
30+
tracing-core = { path = "../tracing-core", version = "0.2", default-features = false }
3131
log = { version = "0.4", optional = true }
32-
tracing-attributes = { path = "../tracing-attributes", version = "0.1.10", optional = true }
32+
tracing-attributes = { path = "../tracing-attributes", version = "0.2", optional = true }
3333
cfg-if = "0.1.10"
3434
pin-project-lite = "0.1"
3535

0 commit comments

Comments
 (0)