Skip to content

Commit f13b3b4

Browse files
authored
Merge pull request #757 from nullr0ute/release-0.5.4
chore: prepare 0.5.4 release
2 parents bce05f1 + 0dd231b commit f13b3b4

File tree

18 files changed

+74
-71
lines changed

18 files changed

+74
-71
lines changed

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

admin-tool/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fdo-admin-tool"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
authors = ["Antonio Murdaca <[email protected]>"]
55
edition = "2018"
66

@@ -21,10 +21,10 @@ pretty_env_logger = "0.5"
2121
nix = "0.26"
2222
tokio = { version = "1", features = ["full"] }
2323

24-
fdo-data-formats = { path = "../data-formats", version = "0.5.3" }
25-
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.3", features = ["server", "client"] }
26-
fdo-store = { path = "../store", version = "0.5.3", features = ["directory"] }
27-
fdo-util = { path = "../util", version = "0.5.3" }
24+
fdo-data-formats = { path = "../data-formats", version = "0.5.4" }
25+
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.4", features = ["server", "client"] }
26+
fdo-store = { path = "../store", version = "0.5.4", features = ["directory"] }
27+
fdo-util = { path = "../util", version = "0.5.4" }
2828
clap_builder = "4.4"
2929

3030
[dev-dependencies]

client-linuxapp/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fdo-client-linuxapp"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
authors = ["Patrick Uiterwijk <[email protected]>"]
55
edition = "2018"
66

@@ -21,6 +21,6 @@ secrecy = "0.8"
2121
devicemapper = "0.34"
2222
openssl = "0.10.70"
2323

24-
fdo-data-formats = { path = "../data-formats", version = "0.5.3" }
25-
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.3", features = ["client"] }
26-
fdo-util = { path = "../util", version = "0.5.3" }
24+
fdo-data-formats = { path = "../data-formats", version = "0.5.4" }
25+
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.4", features = ["client"] }
26+
fdo-util = { path = "../util", version = "0.5.4" }

data-formats/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fdo-data-formats"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
authors = ["Patrick Uiterwijk <[email protected]>"]
55
edition = "2018"
66

db/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "fdo-db"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
edition = "2021"
55

66

77
[dependencies]
88
anyhow = "1.0"
99
diesel = { version = "2.2.7", features = ["sqlite", "postgres", "r2d2"] }
1010

11-
fdo-data-formats = { path = "../data-formats", version = "0.5.3" }
11+
fdo-data-formats = { path = "../data-formats", version = "0.5.4" }
1212

1313
[dev-dependencies]
1414
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.2", features = ["server"] }

fido-device-onboard.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%global combined_license Apache-2.0 AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND ((Apache-2.0 OR MIT) AND BSD-3-Clause) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-2-Clause AND BSD-3-Clause AND (CC0-1.0 OR Apache-2.0) AND (CC0-1.0 OR MIT-0 OR Apache-2.0) AND ISC AND MIT AND ((MIT OR Apache-2.0) AND Unicode-DFS-2016) AND (Apache-2.0 OR MIT OR Zlib) AND MPL-2.0 AND (Unlicense OR MIT)
44

55
Name: fido-device-onboard
6-
Version: 0.5.3
6+
Version: 0.5.4
77
Release: 1%{?dist}
88
Summary: A rust implementation of the FIDO Device Onboard Specification
99
License: BSD-3-Clause
@@ -312,6 +312,9 @@ Requires: fdo-init = %{version}-%{release}
312312
%systemd_postun_with_restart fdo-aio.service
313313

314314
%changelog
315+
* Tue Mar 18 2025 Peter Robinson <[email protected]> - 0.5.4-1
316+
- Update to 0.5.4
317+
315318
* Thu Jan 09 2025 Peter Robinson <[email protected]> - 0.5.2-1
316319
- Update to 0.5.2
317320

http-wrapper/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fdo-http-wrapper"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
authors = ["Patrick Uiterwijk <[email protected]>"]
55
edition = "2018"
66

@@ -18,8 +18,8 @@ hex = "0.4"
1818

1919
openssl = "0.10.70"
2020

21-
fdo-data-formats = { path = "../data-formats", version = "0.5.3" }
22-
fdo-store = { path = "../store", version = "0.5.3" }
21+
fdo-data-formats = { path = "../data-formats", version = "0.5.4" }
22+
fdo-store = { path = "../store", version = "0.5.4" }
2323
aws-nitro-enclaves-cose = "0.5.2"
2424

2525
# Server-side

integration-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "integration-tests"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
edition = "2018"
55
publish = false
66

libfdo-data/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fdo-data"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
edition = "2018"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -9,7 +9,7 @@ edition = "2018"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
fdo-data-formats = { path = "../data-formats", version = "0.5.3" }
12+
fdo-data-formats = { path = "../data-formats", version = "0.5.4" }
1313
libc = "0.2"
1414

1515
[build-dependencies]

libfdo-data/fdo_data.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
#define FDO_DATA_MAJOR 0
1414
#define FDO_DATA_MINOR 5
15-
#define FDO_DATA_PATCH 3
15+
#define FDO_DATA_PATCH 4
1616

1717
typedef struct FdoOwnershipVoucher FdoOwnershipVoucher;
1818

manufacturing-client/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fdo-manufacturing-client"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
authors = ["Patrick Uiterwijk <[email protected]>"]
55
edition = "2018"
66

@@ -17,7 +17,7 @@ rand = "0.8.4"
1717
tss-esapi = { version = "7.4", features = ["generate-bindings"] }
1818
regex = "1.3.7"
1919

20-
fdo-data-formats = { path = "../data-formats", version = "0.5.3" }
21-
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.3", features = ["client"] }
22-
fdo-util = { path = "../util", version = "0.5.3" }
20+
fdo-data-formats = { path = "../data-formats", version = "0.5.4" }
21+
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.4", features = ["client"] }
22+
fdo-util = { path = "../util", version = "0.5.4" }
2323
clap_builder = "4.4"

manufacturing-server/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fdo-manufacturing-server"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
authors = ["Patrick Uiterwijk <[email protected]>"]
55
edition = "2018"
66

@@ -21,7 +21,7 @@ tar = "0.4.41"
2121
flate2 = "1.0.31"
2222
tempfile = "3"
2323

24-
fdo-data-formats = { path = "../data-formats", version = "0.5.3" }
25-
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.3", features = ["server"] }
26-
fdo-store = { path = "../store", version = "0.5.3", features = ["directory"] }
27-
fdo-util = { path = "../util", version = "0.5.3" }
24+
fdo-data-formats = { path = "../data-formats", version = "0.5.4" }
25+
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.4", features = ["server"] }
26+
fdo-store = { path = "../store", version = "0.5.4", features = ["directory"] }
27+
fdo-util = { path = "../util", version = "0.5.4" }

owner-onboarding-server/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fdo-owner-onboarding-server"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
authors = ["Patrick Uiterwijk <[email protected]>"]
55
edition = "2018"
66

@@ -21,7 +21,7 @@ serde_yaml = "0.9"
2121
time = "0.3"
2222
hex = "0.4"
2323

24-
fdo-data-formats = { path = "../data-formats", version = "0.5.3" }
25-
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.3", features = ["server", "client"] }
26-
fdo-store = { path = "../store", version = "0.5.3", features = ["directory"] }
27-
fdo-util = { path = "../util", version = "0.5.3" }
24+
fdo-data-formats = { path = "../data-formats", version = "0.5.4" }
25+
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.4", features = ["server", "client"] }
26+
fdo-store = { path = "../store", version = "0.5.4", features = ["directory"] }
27+
fdo-util = { path = "../util", version = "0.5.4" }

owner-tool/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fdo-owner-tool"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
authors = ["Patrick Uiterwijk <[email protected]>"]
55
edition = "2018"
66

@@ -17,10 +17,10 @@ tokio = { version = "1", features = ["full"] }
1717
tss-esapi = { version = "7.4", features = ["generate-bindings"] }
1818
reqwest = { version = "0.12.9", features = ["blocking"] }
1919

20-
fdo-util = { path = "../util", version = "0.5.3" }
21-
fdo-data-formats = { path = "../data-formats", version = "0.5.3" }
22-
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.3", features = ["client"] }
23-
fdo-db = { path = "../db", version = "0.5.3"}
20+
fdo-util = { path = "../util", version = "0.5.4" }
21+
fdo-data-formats = { path = "../data-formats", version = "0.5.4" }
22+
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.4", features = ["client"] }
23+
fdo-db = { path = "../db", version = "0.5.4"}
2424

2525
hex = "0.4"
2626
clap_builder = "4.4"

rendezvous-server/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fdo-rendezvous-server"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
authors = ["Patrick Uiterwijk <[email protected]>"]
55
edition = "2018"
66

@@ -17,7 +17,7 @@ warp = "0.3.6"
1717
log = "0.4"
1818
time = "0.3"
1919

20-
fdo-data-formats = { path = "../data-formats", version = "0.5.3" }
21-
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.3", features = ["server"] }
22-
fdo-store = { path = "../store", version = "0.5.3" }
23-
fdo-util = { path = "../util", version = "0.5.3" }
20+
fdo-data-formats = { path = "../data-formats", version = "0.5.4" }
21+
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.4", features = ["server"] }
22+
fdo-store = { path = "../store", version = "0.5.4" }
23+
fdo-util = { path = "../util", version = "0.5.4" }

serviceinfo-api-server/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fdo-serviceinfo-api-server"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
edition = "2021"
55

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

19-
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.3", features = ["server"] }
20-
fdo-data-formats = { path = "../data-formats", version = "0.5.3" }
21-
fdo-store = { path = "../store", version = "0.5.3", features = ["directory"] }
22-
fdo-util = { path = "../util", version = "0.5.3" }
19+
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.4", features = ["server"] }
20+
fdo-data-formats = { path = "../data-formats", version = "0.5.4" }
21+
fdo-store = { path = "../store", version = "0.5.4", features = ["directory"] }
22+
fdo-util = { path = "../util", version = "0.5.4" }

0 commit comments

Comments
 (0)