Skip to content

Commit 399fdb5

Browse files
authored
Merge pull request #771 from pcdubs/prepare-v0.5.5
chore: bump for 0.5.5 release
2 parents be16baa + 87e6ac8 commit 399fdb5

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.4"
3+
version = "0.5.5"
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.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" }
24+
fdo-data-formats = { path = "../data-formats", version = "0.5.5" }
25+
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.5", features = ["server", "client"] }
26+
fdo-store = { path = "../store", version = "0.5.5", features = ["directory"] }
27+
fdo-util = { path = "../util", version = "0.5.5" }
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.4"
3+
version = "0.5.5"
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.72"
2323

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" }
24+
fdo-data-formats = { path = "../data-formats", version = "0.5.5" }
25+
fdo-http-wrapper = { path = "../http-wrapper", version = "0.5.5", features = ["client"] }
26+
fdo-util = { path = "../util", version = "0.5.5" }

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.4"
3+
version = "0.5.5"
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.4"
3+
version = "0.5.5"
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.4" }
11+
fdo-data-formats = { path = "../data-formats", version = "0.5.5" }
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.4
6+
Version: 0.5.5
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+
* Wed May 28 2025 Paul Whalen <[email protected]> - 0.5.5-1
316+
- Update to 0.5.5
317+
315318
* Tue Mar 18 2025 Peter Robinson <[email protected]> - 0.5.4-1
316319
- Update to 0.5.4
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.4"
3+
version = "0.5.5"
44
authors = ["Patrick Uiterwijk <[email protected]>"]
55
edition = "2018"
66

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

1919
openssl = "0.10.72"
2020

21-
fdo-data-formats = { path = "../data-formats", version = "0.5.4" }
22-
fdo-store = { path = "../store", version = "0.5.4" }
21+
fdo-data-formats = { path = "../data-formats", version = "0.5.5" }
22+
fdo-store = { path = "../store", version = "0.5.5" }
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.4"
3+
version = "0.5.5"
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.4"
3+
version = "0.5.5"
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.4" }
12+
fdo-data-formats = { path = "../data-formats", version = "0.5.5" }
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 4
15+
#define FDO_DATA_PATCH 5
1616

1717
typedef struct FdoOwnershipVoucher FdoOwnershipVoucher;
1818

0 commit comments

Comments
 (0)