From 28f3853db55e0476e6c4e2603c33158312190b29 Mon Sep 17 00:00:00 2001 From: Alexander Mohr Date: Wed, 3 Dec 2025 11:15:05 +0100 Subject: [PATCH] release: v0.1.1 * Fix creates.io headling for tracing-dlt * Start tagged releases * Release through bot * Minor cleanup Signed-off-by: Alexander Mohr --- Cargo.lock | 40 ++++++++++++++++++------------------ Cargo.toml | 6 +++--- dlt-rs/Cargo.toml | 4 ++-- dlt-sys/Cargo.toml | 2 +- integration-tests/Cargo.toml | 2 +- tracing-dlt/Cargo.toml | 4 ++-- 6 files changed, 29 insertions(+), 29 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8207c4e..2beb7c5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -39,9 +39,9 @@ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" [[package]] name = "cc" -version = "1.2.47" +version = "1.2.48" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd405d82c84ff7f35739f175f67d8b9fb7687a0e84ccdc78bd3568839827cf07" +checksum = "c481bdbf0ed3b892f6f806287d72acd515b352a4ec27a208489b8c1bc839633a" dependencies = [ "find-msvc-tools", "shlex", @@ -75,7 +75,7 @@ dependencies = [ [[package]] name = "dlt-rs" -version = "0.1.0" +version = "0.1.1" dependencies = [ "dlt-sys", "thiserror", @@ -84,7 +84,7 @@ dependencies = [ [[package]] name = "dlt-sys" -version = "0.1.0" +version = "0.1.1" dependencies = [ "bindgen", "cc", @@ -209,7 +209,7 @@ dependencies = [ [[package]] name = "integration-tests" -version = "0.1.0" +version = "0.1.1" dependencies = [ "dlt-rs", "serial_test", @@ -236,9 +236,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.177" +version = "0.2.178" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" +checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" [[package]] name = "libloading" @@ -261,9 +261,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.28" +version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" [[package]] name = "memchr" @@ -475,9 +475,9 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "syn" -version = "2.0.110" +version = "2.0.111" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea" +checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" dependencies = [ "proc-macro2", "quote", @@ -536,9 +536,9 @@ dependencies = [ [[package]] name = "tracing" -version = "0.1.41" +version = "0.1.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" +checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647" dependencies = [ "pin-project-lite", "tracing-attributes", @@ -547,9 +547,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.30" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" dependencies = [ "proc-macro2", "quote", @@ -558,9 +558,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.34" +version = "0.1.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" +checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c" dependencies = [ "once_cell", "valuable", @@ -568,7 +568,7 @@ dependencies = [ [[package]] name = "tracing-dlt" -version = "0.1.0" +version = "0.1.1" dependencies = [ "dlt-rs", "indexmap", @@ -580,9 +580,9 @@ dependencies = [ [[package]] name = "tracing-subscriber" -version = "0.3.20" +version = "0.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5" +checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" dependencies = [ "sharded-slab", "thread_local", diff --git a/Cargo.toml b/Cargo.toml index 9d9c128..cea1160 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,9 +19,9 @@ resolver = "3" members = ["dlt-sys", "dlt-rs", "tracing-dlt", "integration-tests"] [workspace.dependencies] -tracing-dlt = { path = "tracing-dlt" } -dlt-sys = { path = "dlt-sys", version = "0.1.0" } -dlt-rs = { path = "dlt-rs", version = "0.1.0" } +tracing-dlt = { path = "tracing-dlt", version = "0.1.1" } +dlt-sys = { path = "dlt-sys", version = "0.1.1" } +dlt-rs = { path = "dlt-rs", version = "0.1.1" } integration-tests = { path = "integration-tests" } # ---- common crates ---- diff --git a/dlt-rs/Cargo.toml b/dlt-rs/Cargo.toml index d47ed57..72cb4c3 100644 --- a/dlt-rs/Cargo.toml +++ b/dlt-rs/Cargo.toml @@ -11,7 +11,7 @@ [package] name = "dlt-rs" -version = "0.1.0" +version = "0.1.1" edition.workspace = true publish = true 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 path = "src/lib.rs" [dependencies] -dlt-sys = { workspace = true, version = "0.1.0" } +dlt-sys = { workspace = true, version = "0.1.1" } # external tokio = { workspace = true } diff --git a/dlt-sys/Cargo.toml b/dlt-sys/Cargo.toml index fb8f6b8..c3b0f35 100644 --- a/dlt-sys/Cargo.toml +++ b/dlt-sys/Cargo.toml @@ -11,7 +11,7 @@ [package] name = "dlt-sys" -version = "0.1.0" +version = "0.1.1" edition.workspace = true publish = true description = "FFI bindings to libdlt" diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml index 8947a64..ac947f1 100644 --- a/integration-tests/Cargo.toml +++ b/integration-tests/Cargo.toml @@ -11,7 +11,7 @@ [package] name = "integration-tests" -version = "0.1.0" +version = "0.1.1" edition.workspace = true publish = false description = "Common test utilities for DLT tracing integration tests" diff --git a/tracing-dlt/Cargo.toml b/tracing-dlt/Cargo.toml index e0db46a..c2b377b 100644 --- a/tracing-dlt/Cargo.toml +++ b/tracing-dlt/Cargo.toml @@ -11,7 +11,7 @@ [package] name = "tracing-dlt" -version = "0.1.0" +version = "0.1.1" edition.workspace = true publish = true description = "DLT log sink for the tracing ecosystem" @@ -26,7 +26,7 @@ path = "src/lib.rs" [dependencies] # internal dependencies -dlt-rs = { workspace = true, version = "0.1.0" } +dlt-rs = { workspace = true, version = "0.1.1" } # external tokio = { workspace = true }