From c8d4062f739cc020482375b410fa572c13b88a14 Mon Sep 17 00:00:00 2001 From: Steffen Eiden Date: Fri, 5 Jan 2024 10:42:55 +0100 Subject: [PATCH] rust/pv: bump up crate version to 1.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Recent changes makes it reasonable to update the version string of pv and pv_base to 1.0.0. Recent changes introduced some non-backwards compatible changes, like move some Error definition from pv to the new pv_core crate. Also, the pv crates seem to be in a good shape to be considered released. Therefore, move up the Semver to 1.0.0. See also: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html NOTE: As these crates are not published to `crates.io` as of now, the version number is meaningless, as cargo will not pull them from anywhere and just use the files provided by this repository. Reviewed-by: Marc Hartmayer Signed-off-by: Steffen Eiden Signed-off-by: Jan Höppner --- rust/Cargo.lock | 4 ++-- rust/pv/Cargo.toml | 2 +- rust/pv_core/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 991dbb2b..04f0cfd8 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -774,7 +774,7 @@ dependencies = [ [[package]] name = "pv" -version = "0.9.1" +version = "1.0.0" dependencies = [ "byteorder", "clap", @@ -794,7 +794,7 @@ dependencies = [ [[package]] name = "pv_core" -version = "0.9.1" +version = "1.0.0" dependencies = [ "byteorder", "lazy_static", diff --git a/rust/pv/Cargo.toml b/rust/pv/Cargo.toml index 886a9d7b..240f04d7 100644 --- a/rust/pv/Cargo.toml +++ b/rust/pv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pv" -version = "0.9.1" +version = "1.0.0" edition.workspace = true license.workspace = true diff --git a/rust/pv_core/Cargo.toml b/rust/pv_core/Cargo.toml index 6165400d..a8c9dc70 100644 --- a/rust/pv_core/Cargo.toml +++ b/rust/pv_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pv_core" -version = "0.9.1" +version = "1.0.0" edition.workspace = true license.workspace = true