Skip to content
This repository was archived by the owner on Jun 8, 2024. It is now read-only.

Commit e2a3519

Browse files
committed
prepare for 0.11.0-alpha.2 release
1 parent fa275b5 commit e2a3519

File tree

24 files changed

+46
-46
lines changed

24 files changed

+46
-46
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ members = [
1515

1616
[package]
1717
name = "emit"
18-
version = "0.11.0-alpha.1"
18+
version = "0.11.0-alpha.2"
1919
authors = ["emit contributors"]
2020
license = "MIT OR Apache-2.0"
2121
readme = "README.md"
@@ -38,11 +38,11 @@ implicit_rt = ["emit_core/implicit_rt", "emit_macros/implicit_rt"]
3838
implicit_internal_rt = ["emit_core/implicit_internal_rt"]
3939

4040
[dependencies.emit_macros]
41-
version = "0.11.0-alpha.1"
41+
version = "0.11.0-alpha.2"
4242
path = "macros"
4343

4444
[dependencies.emit_core]
45-
version = "0.11.0-alpha.1"
45+
version = "0.11.0-alpha.2"
4646
path = "core"
4747
default-features = false
4848

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[![all](https://github.com/KodrAus/emit/actions/workflows/all.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/all.yml)
66

7-
[Current docs](https://docs.rs/emit/0.11.0-alpha.1/emit/index.html)
7+
[Current docs](https://docs.rs/emit/0.11.0-alpha.2/emit/index.html)
88

99
## Structured diagnostics for Rust applications.
1010

@@ -14,10 +14,10 @@
1414

1515
```toml
1616
[dependencies.emit]
17-
version = "0.11.0-alpha.1"
17+
version = "0.11.0-alpha.2"
1818

1919
[dependencies.emit_term]
20-
version = "0.11.0-alpha.1"
20+
version = "0.11.0-alpha.2"
2121
```
2222

2323
```rust

batcher/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emit_batcher"
3-
version = "0.11.0-alpha.1"
3+
version = "0.11.0-alpha.2"
44
authors = ["emit contributors"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -12,7 +12,7 @@ edition = "2021"
1212
features = ["tokio"]
1313

1414
[dependencies.emit]
15-
version = "0.11.0-alpha.1"
15+
version = "0.11.0-alpha.2"
1616
path = "../"
1717
default-features = false
1818

batcher/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
[![batcher](https://github.com/KodrAus/emit/actions/workflows/batcher.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/batcher.yml)
44

5-
[Current docs](https://docs.rs/emit_batcher/0.11.0-alpha.1/emit_batcher/index.html)
5+
[Current docs](https://docs.rs/emit_batcher/0.11.0-alpha.2/emit_batcher/index.html)
66

77
Infrastructure for emitting diagnostic events in the background.

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emit_core"
3-
version = "0.11.0-alpha.1"
3+
version = "0.11.0-alpha.2"
44
authors = ["emit contributors"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

emitter/file/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emit_file"
3-
version = "0.11.0-alpha.1"
3+
version = "0.11.0-alpha.2"
44
authors = ["emit contributors"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -18,7 +18,7 @@ default = ["default_writer"]
1818
default_writer = ["emit/sval", "sval_json"]
1919

2020
[dependencies.emit]
21-
version = "0.11.0-alpha.1"
21+
version = "0.11.0-alpha.2"
2222
path = "../../"
2323
default-features = false
2424
features = ["std", "implicit_internal_rt"]
@@ -32,13 +32,13 @@ features = ["std"]
3232
optional = true
3333

3434
[dependencies.emit_batcher]
35-
version = "0.11.0-alpha.1"
35+
version = "0.11.0-alpha.2"
3636
path = "../../batcher"
3737

3838
[dependencies.rand]
3939
version = "0.8"
4040

4141
[dev-dependencies.emit]
42-
version = "0.11.0-alpha.1"
42+
version = "0.11.0-alpha.2"
4343
path = "../../"
4444
features = ["implicit_rt"]

emitter/file/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
[![file](https://github.com/KodrAus/emit/actions/workflows/file.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/file.yml)
44

5-
[Current docs](https://docs.rs/emit_file/0.11.0-alpha.1/emit_file/index.html)
5+
[Current docs](https://docs.rs/emit_file/0.11.0-alpha.2/emit_file/index.html)
66

77
Emit diagnostic events to rolling files.

emitter/file/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ Add `emit` and `emit_file` to your `Cargo.toml`:
1515
1616
```toml
1717
[dependencies.emit]
18-
version = "0.11.0-alpha.1"
18+
version = "0.11.0-alpha.2"
1919
2020
[dependencies.emit_file]
21-
version = "0.11.0-alpha.1"
21+
version = "0.11.0-alpha.2"
2222
```
2323
2424
Initialize `emit` using a rolling file set:

emitter/opentelemetry/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emit_opentelemetry"
3-
version = "0.11.0-alpha.1"
3+
version = "0.11.0-alpha.2"
44
authors = ["emit contributors"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -11,7 +11,7 @@ categories = ["development-tools::debugging"]
1111
edition = "2021"
1212

1313
[dependencies.emit]
14-
version = "0.11.0-alpha.1"
14+
version = "0.11.0-alpha.2"
1515
path = "../../"
1616
features = ["std", "serde", "implicit_internal_rt"]
1717
default-features = false
@@ -28,6 +28,6 @@ features = ["logs", "trace"]
2828
version = "1"
2929

3030
[dev-dependencies.emit]
31-
version = "0.11.0-alpha.1"
31+
version = "0.11.0-alpha.2"
3232
path = "../../"
3333
features = ["implicit_rt"]

emitter/opentelemetry/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![opentelemetry](https://github.com/KodrAus/emit/actions/workflows/opentelemetry.yml/badge.svg)](https://github.com/KodrAus/emit/actions/workflows/opentelemetry.yml)
44

5-
[Current docs](https://docs.rs/emit_opentelemetry/0.11.0-alpha.1/emit_opentelemetry/index.html)
5+
[Current docs](https://docs.rs/emit_opentelemetry/0.11.0-alpha.2/emit_opentelemetry/index.html)
66

77
Integrate `emit` with the OpenTelemetry SDK.
88

0 commit comments

Comments
 (0)