From 56714bd571fe2e8d8672583ccbf5a319f2339ba9 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Tue, 1 Feb 2022 09:45:06 +0100 Subject: [PATCH] chore: bump to version 0.3.0 Bump the version number to 0.3.0 in preparation of a new release. Signed-off-by: Patrick Uiterwijk --- client-linuxapp/Cargo.toml | 8 ++++---- data-formats/Cargo.toml | 2 +- fido-device-onboard.spec | 5 ++++- http-wrapper/Cargo.toml | 6 +++--- integration-tests/Cargo.toml | 2 +- libfdo-data/Cargo.toml | 4 ++-- libfdo-data/fdo_data.h | 2 +- manufacturing-client/Cargo.toml | 8 ++++---- manufacturing-server/Cargo.toml | 10 +++++----- owner-onboarding-server/Cargo.toml | 10 +++++----- owner-tool/Cargo.toml | 8 ++++---- rendezvous-server/Cargo.toml | 10 +++++----- store/Cargo.toml | 4 ++-- util/Cargo.toml | 6 +++--- 14 files changed, 44 insertions(+), 41 deletions(-) diff --git a/client-linuxapp/Cargo.toml b/client-linuxapp/Cargo.toml index 17883d146..0c04c55ef 100644 --- a/client-linuxapp/Cargo.toml +++ b/client-linuxapp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fdo-client-linuxapp" -version = "0.2.0" +version = "0.3.0" authors = ["Patrick Uiterwijk "] edition = "2018" @@ -17,6 +17,6 @@ passwd = "0.0.1" rand = "0.8.4" nix = "0.23.0" -fdo-data-formats = { path = "../data-formats", version = "0.2.0" } -fdo-http-wrapper = { path = "../http-wrapper", version = "0.2.0", features = ["client"] } -fdo-util = { path = "../util", version = "0.2.0" } +fdo-data-formats = { path = "../data-formats", version = "0.3.0" } +fdo-http-wrapper = { path = "../http-wrapper", version = "0.3.0", features = ["client"] } +fdo-util = { path = "../util", version = "0.3.0" } diff --git a/data-formats/Cargo.toml b/data-formats/Cargo.toml index 825a5e65f..14c084b93 100644 --- a/data-formats/Cargo.toml +++ b/data-formats/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fdo-data-formats" -version = "0.2.0" +version = "0.3.0" authors = ["Patrick Uiterwijk "] edition = "2018" diff --git a/fido-device-onboard.spec b/fido-device-onboard.spec index 5a6363b3b..dbc0e4832 100644 --- a/fido-device-onboard.spec +++ b/fido-device-onboard.spec @@ -4,7 +4,7 @@ %global __cargo_is_lib() false %global forgeurl https://github.com/fedora-iot/fido-device-onboard-rs -Version: 0.2.0 +Version: 0.3.0 %forgemeta @@ -165,6 +165,9 @@ Summary: FDO Owner tools implementation %{_docdir}/fdo/owner-addresses.yml %changelog +* Tue Feb 1 2022 Patrick Uiterwijk - 0.3.0-1 +- Rebase to 0.3.0 + * Fri Dec 10 2021 Patrick Uiterwijk - 0.2.0-1 - Rebase to 0.2.0 diff --git a/http-wrapper/Cargo.toml b/http-wrapper/Cargo.toml index d57ab265e..1a69ecbbe 100644 --- a/http-wrapper/Cargo.toml +++ b/http-wrapper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fdo-http-wrapper" -version = "0.2.0" +version = "0.3.0" authors = ["Patrick Uiterwijk "] edition = "2018" @@ -18,8 +18,8 @@ hex = "0.4" openssl = "0.10" -fdo-data-formats = { path = "../data-formats", version = "0.2.0" } -fdo-store = { path = "../store", version = "0.2.0" } +fdo-data-formats = { path = "../data-formats", version = "0.3.0" } +fdo-store = { path = "../store", version = "0.3.0" } aws-nitro-enclaves-cose = "0.4.0" # Server-side diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml index 330f0f8a1..7b75fcc4e 100644 --- a/integration-tests/Cargo.toml +++ b/integration-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "integration-tests" -version = "0.2.0" +version = "0.3.0" edition = "2018" publish = false diff --git a/libfdo-data/Cargo.toml b/libfdo-data/Cargo.toml index c0c8c91be..70b5aa80e 100644 --- a/libfdo-data/Cargo.toml +++ b/libfdo-data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fdo-data" -version = "0.2.0" +version = "0.3.0" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -9,7 +9,7 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -fdo-data-formats = { path = "../data-formats", version = "0.2.0" } +fdo-data-formats = { path = "../data-formats", version = "0.3.0" } libc = "0.2" [build-dependencies] diff --git a/libfdo-data/fdo_data.h b/libfdo-data/fdo_data.h index 1559a7766..e7ecc2503 100644 --- a/libfdo-data/fdo_data.h +++ b/libfdo-data/fdo_data.h @@ -13,7 +13,7 @@ #include #define FDO_DATA_MAJOR 0 -#define FDO_DATA_MINOR 2 +#define FDO_DATA_MINOR 3 #define FDO_DATA_PATCH 0 typedef struct FdoOwnershipVoucher FdoOwnershipVoucher; diff --git a/manufacturing-client/Cargo.toml b/manufacturing-client/Cargo.toml index e2f8adeb3..24d767aad 100644 --- a/manufacturing-client/Cargo.toml +++ b/manufacturing-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fdo-manufacturing-client" -version = "0.2.0" +version = "0.3.0" authors = ["Patrick Uiterwijk "] edition = "2018" @@ -16,6 +16,6 @@ sys-info = "0.9" passwd = "0.0.1" rand = "0.8.4" -fdo-data-formats = { path = "../data-formats", version = "0.2.0" } -fdo-http-wrapper = { path = "../http-wrapper", version = "0.2.0", features = ["client"] } -fdo-util = { path = "../util", version = "0.2.0" } +fdo-data-formats = { path = "../data-formats", version = "0.3.0" } +fdo-http-wrapper = { path = "../http-wrapper", version = "0.3.0", features = ["client"] } +fdo-util = { path = "../util", version = "0.3.0" } diff --git a/manufacturing-server/Cargo.toml b/manufacturing-server/Cargo.toml index 11db81572..b42c688dd 100644 --- a/manufacturing-server/Cargo.toml +++ b/manufacturing-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fdo-manufacturing-server" -version = "0.2.0" +version = "0.3.0" authors = ["Patrick Uiterwijk "] edition = "2018" @@ -18,7 +18,7 @@ log = "0.4" hex = "0.4" serde_yaml = "0.8" -fdo-data-formats = { path = "../data-formats", version = "0.2.0" } -fdo-http-wrapper = { path = "../http-wrapper", version = "0.2.0", features = ["server"] } -fdo-store = { path = "../store", version = "0.2.0", features = ["directory"] } -fdo-util = { path = "../util", version = "0.2.0" } +fdo-data-formats = { path = "../data-formats", version = "0.3.0" } +fdo-http-wrapper = { path = "../http-wrapper", version = "0.3.0", features = ["server"] } +fdo-store = { path = "../store", version = "0.3.0", features = ["directory"] } +fdo-util = { path = "../util", version = "0.3.0" } diff --git a/owner-onboarding-server/Cargo.toml b/owner-onboarding-server/Cargo.toml index 273cf1077..7e1bc09a2 100644 --- a/owner-onboarding-server/Cargo.toml +++ b/owner-onboarding-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fdo-owner-onboarding-server" -version = "0.2.0" +version = "0.3.0" authors = ["Patrick Uiterwijk "] edition = "2018" @@ -20,7 +20,7 @@ log = "0.4" serde_yaml = "0.8" time = "0.3" -fdo-data-formats = { path = "../data-formats", version = "0.2.0" } -fdo-http-wrapper = { path = "../http-wrapper", version = "0.2.0", features = ["server"] } -fdo-store = { path = "../store", version = "0.2.0", features = ["directory"] } -fdo-util = { path = "../util", version = "0.2.0" } +fdo-data-formats = { path = "../data-formats", version = "0.3.0" } +fdo-http-wrapper = { path = "../http-wrapper", version = "0.3.0", features = ["server"] } +fdo-store = { path = "../store", version = "0.3.0", features = ["directory"] } +fdo-util = { path = "../util", version = "0.3.0" } diff --git a/owner-tool/Cargo.toml b/owner-tool/Cargo.toml index bc87f38da..360be4069 100644 --- a/owner-tool/Cargo.toml +++ b/owner-tool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fdo-owner-tool" -version = "0.2.0" +version = "0.3.0" authors = ["Patrick Uiterwijk "] edition = "2018" @@ -15,9 +15,9 @@ serde = { version = "1", features = ["derive"] } serde_yaml = "0.8" tokio = { version = "1", features = ["full"] } -fdo-util = { path = "../util", version = "0.2.0" } -fdo-data-formats = { path = "../data-formats", version = "0.2.0" } -fdo-http-wrapper = { path = "../http-wrapper", version = "0.2.0", features = ["client"] } +fdo-util = { path = "../util", version = "0.3.0" } +fdo-data-formats = { path = "../data-formats", version = "0.3.0" } +fdo-http-wrapper = { path = "../http-wrapper", version = "0.3.0", features = ["client"] } hex = "0.4" diff --git a/rendezvous-server/Cargo.toml b/rendezvous-server/Cargo.toml index 90b5c51f4..3ce06f8c3 100644 --- a/rendezvous-server/Cargo.toml +++ b/rendezvous-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fdo-rendezvous-server" -version = "0.2.0" +version = "0.3.0" authors = ["Patrick Uiterwijk "] edition = "2018" @@ -17,7 +17,7 @@ warp = "0.3" log = "0.4" time = "0.3" -fdo-data-formats = { path = "../data-formats", version = "0.2.0" } -fdo-http-wrapper = { path = "../http-wrapper", version = "0.2.0", features = ["server"] } -fdo-store = { path = "../store", version = "0.2.0" } -fdo-util = { path = "../util", version = "0.2.0" } +fdo-data-formats = { path = "../data-formats", version = "0.3.0" } +fdo-http-wrapper = { path = "../http-wrapper", version = "0.3.0", features = ["server"] } +fdo-store = { path = "../store", version = "0.3.0" } +fdo-util = { path = "../util", version = "0.3.0" } diff --git a/store/Cargo.toml b/store/Cargo.toml index fa9e6d368..b0d11f449 100644 --- a/store/Cargo.toml +++ b/store/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "fdo-store" -version = "0.2.0" +version = "0.3.0" authors = ["Patrick Uiterwijk "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -fdo-data-formats = { path = "../data-formats", version = "0.2.0" } +fdo-data-formats = { path = "../data-formats", version = "0.3.0" } config = "0.11" futures = "0.3" diff --git a/util/Cargo.toml b/util/Cargo.toml index 26cce4446..78c00f6c7 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fdo-util" -version = "0.2.0" +version = "0.3.0" authors = ["Antonio Murdaca "] edition = "2018" @@ -13,7 +13,7 @@ glob = "0.3.0" log = "0.4" serde = "1" -fdo-data-formats = { path = "../data-formats", version = "0.2.0" } -fdo-store = { path = "../store", version = "0.2.0" } +fdo-data-formats = { path = "../data-formats", version = "0.3.0" } +fdo-store = { path = "../store", version = "0.3.0" } serde_yaml = "0.8" serde_cbor = "0.11"