Skip to content

Commit 28f3853

Browse files
committed
release: v0.1.1
* Fix creates.io headling for tracing-dlt * Start tagged releases * Release through bot * Minor cleanup Signed-off-by: Alexander Mohr <[email protected]>
1 parent 8f28baf commit 28f3853

File tree

6 files changed

+29
-29
lines changed

6 files changed

+29
-29
lines changed

Cargo.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ resolver = "3"
1919
members = ["dlt-sys", "dlt-rs", "tracing-dlt", "integration-tests"]
2020

2121
[workspace.dependencies]
22-
tracing-dlt = { path = "tracing-dlt" }
23-
dlt-sys = { path = "dlt-sys", version = "0.1.0" }
24-
dlt-rs = { path = "dlt-rs", version = "0.1.0" }
22+
tracing-dlt = { path = "tracing-dlt", version = "0.1.1" }
23+
dlt-sys = { path = "dlt-sys", version = "0.1.1" }
24+
dlt-rs = { path = "dlt-rs", version = "0.1.1" }
2525
integration-tests = { path = "integration-tests" }
2626

2727
# ---- common crates ----

dlt-rs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
[package]
1313
name = "dlt-rs"
14-
version = "0.1.0"
14+
version = "0.1.1"
1515
edition.workspace = true
1616
publish = true
1717
description = "Safe and idiomatic Rust wrapper for the C library libdlt to provide DLT logging capabilities for Rust applications"
@@ -25,7 +25,7 @@ workspace = true
2525
path = "src/lib.rs"
2626

2727
[dependencies]
28-
dlt-sys = { workspace = true, version = "0.1.0" }
28+
dlt-sys = { workspace = true, version = "0.1.1" }
2929

3030
# external
3131
tokio = { workspace = true }

dlt-sys/Cargo.toml

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

1212
[package]
1313
name = "dlt-sys"
14-
version = "0.1.0"
14+
version = "0.1.1"
1515
edition.workspace = true
1616
publish = true
1717
description = "FFI bindings to libdlt"

integration-tests/Cargo.toml

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

1212
[package]
1313
name = "integration-tests"
14-
version = "0.1.0"
14+
version = "0.1.1"
1515
edition.workspace = true
1616
publish = false
1717
description = "Common test utilities for DLT tracing integration tests"

tracing-dlt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
[package]
1313
name = "tracing-dlt"
14-
version = "0.1.0"
14+
version = "0.1.1"
1515
edition.workspace = true
1616
publish = true
1717
description = "DLT log sink for the tracing ecosystem"
@@ -26,7 +26,7 @@ path = "src/lib.rs"
2626

2727
[dependencies]
2828
# internal dependencies
29-
dlt-rs = { workspace = true, version = "0.1.0" }
29+
dlt-rs = { workspace = true, version = "0.1.1" }
3030

3131
# external
3232
tokio = { workspace = true }

0 commit comments

Comments
 (0)