Skip to content

Commit

Permalink
Merge pull request #195 from puiterwijk/bump
Browse files Browse the repository at this point in the history
chore: bump to version 0.3.0
  • Loading branch information
puiterwijk authored Feb 1, 2022
2 parents c99be76 + 56714bd commit 93be4cf
Show file tree
Hide file tree
Showing 14 changed files with 44 additions and 41 deletions.
8 changes: 4 additions & 4 deletions client-linuxapp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fdo-client-linuxapp"
version = "0.2.0"
version = "0.3.0"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand All @@ -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" }
2 changes: 1 addition & 1 deletion data-formats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fdo-data-formats"
version = "0.2.0"
version = "0.3.0"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand Down
5 changes: 4 additions & 1 deletion fido-device-onboard.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -165,6 +165,9 @@ Summary: FDO Owner tools implementation
%{_docdir}/fdo/owner-addresses.yml

%changelog
* Tue Feb 1 2022 Patrick Uiterwijk <[email protected]> - 0.3.0-1
- Rebase to 0.3.0

* Fri Dec 10 2021 Patrick Uiterwijk <[email protected]> - 0.2.0-1
- Rebase to 0.2.0

Expand Down
6 changes: 3 additions & 3 deletions http-wrapper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fdo-http-wrapper"
version = "0.2.0"
version = "0.3.0"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "integration-tests"
version = "0.2.0"
version = "0.3.0"
edition = "2018"
publish = false

Expand Down
4 changes: 2 additions & 2 deletions libfdo-data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion libfdo-data/fdo_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <stdlib.h>

#define FDO_DATA_MAJOR 0
#define FDO_DATA_MINOR 2
#define FDO_DATA_MINOR 3
#define FDO_DATA_PATCH 0

typedef struct FdoOwnershipVoucher FdoOwnershipVoucher;
Expand Down
8 changes: 4 additions & 4 deletions manufacturing-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fdo-manufacturing-client"
version = "0.2.0"
version = "0.3.0"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand All @@ -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" }
10 changes: 5 additions & 5 deletions manufacturing-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fdo-manufacturing-server"
version = "0.2.0"
version = "0.3.0"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand All @@ -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" }
10 changes: 5 additions & 5 deletions owner-onboarding-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fdo-owner-onboarding-server"
version = "0.2.0"
version = "0.3.0"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand All @@ -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" }
8 changes: 4 additions & 4 deletions owner-tool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fdo-owner-tool"
version = "0.2.0"
version = "0.3.0"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand All @@ -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"
10 changes: 5 additions & 5 deletions rendezvous-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fdo-rendezvous-server"
version = "0.2.0"
version = "0.3.0"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand All @@ -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" }
4 changes: 2 additions & 2 deletions store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "fdo-store"
version = "0.2.0"
version = "0.3.0"
authors = ["Patrick Uiterwijk <[email protected]>"]
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"
Expand Down
6 changes: 3 additions & 3 deletions util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fdo-util"
version = "0.2.0"
version = "0.3.0"
authors = ["Antonio Murdaca <[email protected]>"]
edition = "2018"

Expand All @@ -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"

0 comments on commit 93be4cf

Please sign in to comment.