Skip to content

Commit

Permalink
Merge pull request #452 from nullr0ute/0.4.9-release
Browse files Browse the repository at this point in the history
chore: bump for 0.4.9 release
  • Loading branch information
mergify[bot] authored Mar 28, 2023
2 parents 7baa353 + 510323b commit fb54215
Show file tree
Hide file tree
Showing 16 changed files with 305 additions and 343 deletions.
546 changes: 254 additions & 292 deletions Cargo.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions admin-tool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fdo-admin-tool"
version = "0.4.8"
version = "0.4.9"
authors = ["Antonio Murdaca <[email protected]>"]
edition = "2018"

Expand All @@ -22,10 +22,10 @@ pretty_env_logger = "0.4"
nix = "0.26"
tokio = { version = "1", features = ["full"] }

fdo-data-formats = { path = "../data-formats", version = "0.4.8" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.8", features = ["server", "client"] }
fdo-store = { path = "../store", version = "0.4.8", features = ["directory"] }
fdo-util = { path = "../util", version = "0.4.8" }
fdo-data-formats = { path = "../data-formats", version = "0.4.9" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.9", features = ["server", "client"] }
fdo-store = { path = "../store", version = "0.4.9", features = ["directory"] }
fdo-util = { path = "../util", version = "0.4.9" }

[dev-dependencies]
rand = "0.8"
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.4.8"
version = "0.4.9"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand All @@ -21,6 +21,6 @@ libcryptsetup-rs = { version = "0.6.1", features = ["mutex"] }
secrecy = "0.8"
devicemapper = "0.33"

fdo-data-formats = { path = "../data-formats", version = "0.4.8" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.8", features = ["client"] }
fdo-util = { path = "../util", version = "0.4.8" }
fdo-data-formats = { path = "../data-formats", version = "0.4.9" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.9", features = ["client"] }
fdo-util = { path = "../util", version = "0.4.9" }
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.4.8"
version = "0.4.9"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

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.4.8"
version = "0.4.9"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand All @@ -18,8 +18,8 @@ hex = "0.4"

openssl = "0.10.48"

fdo-data-formats = { path = "../data-formats", version = "0.4.8" }
fdo-store = { path = "../store", version = "0.4.8" }
fdo-data-formats = { path = "../data-formats", version = "0.4.9" }
fdo-store = { path = "../store", version = "0.4.9" }
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.4.8"
version = "0.4.9"
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.4.8"
version = "0.4.9"
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.4.8" }
fdo-data-formats = { path = "../data-formats", version = "0.4.9" }
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 @@ -12,7 +12,7 @@

#define FDO_DATA_MAJOR 0
#define FDO_DATA_MINOR 4
#define FDO_DATA_PATCH 8
#define FDO_DATA_PATCH 9

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.4.8"
version = "0.4.9"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand All @@ -19,6 +19,6 @@ tss-esapi = "7.2"
regex = "1.3.7"
lazy_static = "1.4"

fdo-data-formats = { path = "../data-formats", version = "0.4.8" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.8", features = ["client"] }
fdo-util = { path = "../util", version = "0.4.8" }
fdo-data-formats = { path = "../data-formats", version = "0.4.9" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.9", features = ["client"] }
fdo-util = { path = "../util", version = "0.4.9" }
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.4.8"
version = "0.4.9"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand All @@ -18,7 +18,7 @@ log = "0.4"
hex = "0.4"
serde_yaml = "0.9"

fdo-data-formats = { path = "../data-formats", version = "0.4.8" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.8", features = ["server"] }
fdo-store = { path = "../store", version = "0.4.8", features = ["directory"] }
fdo-util = { path = "../util", version = "0.4.8" }
fdo-data-formats = { path = "../data-formats", version = "0.4.9" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.9", features = ["server"] }
fdo-store = { path = "../store", version = "0.4.9", features = ["directory"] }
fdo-util = { path = "../util", version = "0.4.9" }
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.4.8"
version = "0.4.9"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand All @@ -21,7 +21,7 @@ serde_yaml = "0.9"
time = "0.3"
hex = "0.4"

fdo-data-formats = { path = "../data-formats", version = "0.4.8" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.8", features = ["server", "client"] }
fdo-store = { path = "../store", version = "0.4.8", features = ["directory"] }
fdo-util = { path = "../util", version = "0.4.8" }
fdo-data-formats = { path = "../data-formats", version = "0.4.9" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.9", features = ["server", "client"] }
fdo-store = { path = "../store", version = "0.4.9", features = ["directory"] }
fdo-util = { path = "../util", version = "0.4.9" }
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.4.8"
version = "0.4.9"
authors = ["Patrick Uiterwijk <[email protected]>"]
edition = "2018"

Expand All @@ -16,9 +16,9 @@ serde_yaml = "0.9"
tokio = { version = "1", features = ["full"] }
tss-esapi = "7.2"

fdo-util = { path = "../util", version = "0.4.8" }
fdo-data-formats = { path = "../data-formats", version = "0.4.8" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.8", features = ["client"] }
fdo-util = { path = "../util", version = "0.4.9" }
fdo-data-formats = { path = "../data-formats", version = "0.4.9" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.9", 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.4.8"
version = "0.4.9"
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.4.8" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.8", features = ["server"] }
fdo-store = { path = "../store", version = "0.4.8" }
fdo-util = { path = "../util", version = "0.4.8" }
fdo-data-formats = { path = "../data-formats", version = "0.4.9" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.9", features = ["server"] }
fdo-store = { path = "../store", version = "0.4.9" }
fdo-util = { path = "../util", version = "0.4.9" }
10 changes: 5 additions & 5 deletions serviceinfo-api-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fdo-serviceinfo-api-server"
version = "0.4.8"
version = "0.4.9"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -16,7 +16,7 @@ serde = "1"
serde_bytes = "0.11"
serde_json = "1"

fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.8", features = ["server"] }
fdo-data-formats = { path = "../data-formats", version = "0.4.8" }
fdo-store = { path = "../store", version = "0.4.8", features = ["directory"] }
fdo-util = { path = "../util", version = "0.4.8" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.9", features = ["server"] }
fdo-data-formats = { path = "../data-formats", version = "0.4.9" }
fdo-store = { path = "../store", version = "0.4.9", features = ["directory"] }
fdo-util = { path = "../util", version = "0.4.9" }
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.4.8"
version = "0.4.9"
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.4.8" }
fdo-data-formats = { path = "../data-formats", version = "0.4.9" }

config = "0.13.3"
futures = "0.3"
Expand Down
8 changes: 4 additions & 4 deletions util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fdo-util"
version = "0.4.8"
version = "0.4.9"
authors = ["Antonio Murdaca <[email protected]>"]
edition = "2018"

Expand All @@ -13,9 +13,9 @@ glob = "0.3.1"
log = "0.4"
serde = "1"

fdo-data-formats = { path = "../data-formats", version = "0.4.8" }
fdo-store = { path = "../store", version = "0.4.8" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.8", features = ["server", "client"] }
fdo-data-formats = { path = "../data-formats", version = "0.4.9" }
fdo-store = { path = "../store", version = "0.4.9" }
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.9", features = ["server", "client"] }
serde_yaml = "0.9"
serde_cbor = "0.11"
serde_json = "1"

0 comments on commit fb54215

Please sign in to comment.