From 12becd2c65cb3d034bd5cfb7452cbfa6ca765f56 Mon Sep 17 00:00:00 2001 From: Kai Hudalla Date: Wed, 12 Nov 2025 14:14:24 +0100 Subject: [PATCH] Prepare v0.9.0 release Bumped version to 0.9.0 in Cargo.toml and Cargo.lock, updated README.md to reflect new version. --- Cargo.lock | 10 +++++----- Cargo.toml | 4 ++-- README.md | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 77ad1fe..ba2c551 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -165,9 +165,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.5.50" +version = "4.5.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c2cfd7bf8a6017ddaa4e32ffe7403d547790db06bd171c1c53926faab501623" +checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5" dependencies = [ "clap_builder", "clap_derive", @@ -175,9 +175,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.50" +version = "4.5.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a4c05b9e80c5ccd3a7ef080ad7b6ba7d6fc00a985b8b157197075677c82c7a0" +checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a" dependencies = [ "anstream", "anstyle", @@ -1704,7 +1704,7 @@ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" [[package]] name = "up-rust" -version = "0.9.0-SNAPSHOT" +version = "0.9.0" dependencies = [ "async-trait", "bytes", diff --git a/Cargo.toml b/Cargo.toml index d83c105..abef40d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ name = "up-rust" readme = "README.md" repository = "https://github.com/eclipse-uprotocol/up-rust" rust-version = "1.82" -version = "0.9.0-SNAPSHOT" +version = "0.9.0" [features] default = ["communication"] @@ -65,7 +65,7 @@ protobuf-codegen = { version = "3.7.2" } protoc-bin-vendored = { version = "3.2" } [dev-dependencies] -clap = { version = "4.5.50" } +clap = { version = "4.5.51" } cucumber = { version = "0.21.1", features = ["output-junit"] } hex = { version = "0.4.3" } mockall = { version = "0.13.1" } diff --git a/README.md b/README.md index 58bac41..efb4a16 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The crate needs to be added to the `[dependencies]` section of the `Cargo.toml` ```toml [dependencies] -up-rust = { version = "0.8" } +up-rust = { version = "0.9" } ``` Most developers will want to use the Communication Level API and its default implementation which are provided by the `communication` module. Please refer to the [examples](./examples/) for inspiration how to use this crate.