Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.5.1 #463

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.5.0"
version = "0.5.1"
authors = [
"William Brown <[email protected]>",
"Michael Farrell <[email protected]>"
Expand Down Expand Up @@ -58,14 +58,14 @@ exclude = [

[workspace.dependencies]
# These are in release/dependency order.
base64urlsafedata = { path = "./base64urlsafedata", version = "=0.5.0" }
fido-hid-rs = { path = "./fido-hid-rs", version = "=0.5.0" }
webauthn-attestation-ca = { path = "./attestation-ca", version = "=0.5.0" }
webauthn-rs-proto = { path = "./webauthn-rs-proto", version = "=0.5.0" }
fido-mds = { path = "./fido-mds", version = "=0.5.0" }
webauthn-rs-core = { path = "./webauthn-rs-core", version = "=0.5.0" }
webauthn-rs = { path = "./webauthn-rs", version = "=0.5.0" }
webauthn-authenticator-rs = { path = "./webauthn-authenticator-rs", version = "=0.5.0" }
base64urlsafedata = { path = "./base64urlsafedata", version = "=0.5.1" }
fido-hid-rs = { path = "./fido-hid-rs", version = "=0.5.1" }
webauthn-attestation-ca = { path = "./attestation-ca", version = "=0.5.1" }
webauthn-rs-proto = { path = "./webauthn-rs-proto", version = "=0.5.1" }
fido-mds = { path = "./fido-mds", version = "=0.5.1" }
Copy link

@Be-ing Be-ing Dec 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fido-mds-tool/Cargo.toml specifies that crate's version as

version = { workspace = true }

but fido-mds-tool is not included in the workspace's virtual Cargo.toml here, so version 0.5.1 hasn't been published to crates.io whereas the crates listed here have been published as version 0.5.1.

webauthn-rs-core = { path = "./webauthn-rs-core", version = "=0.5.1" }
webauthn-rs = { path = "./webauthn-rs", version = "=0.5.1" }
webauthn-authenticator-rs = { path = "./webauthn-authenticator-rs", version = "=0.5.1" }

# Currently un-released
cable-tunnel-server-common = { path = "./cable-tunnel-server/common", version = "0.1.0" }
Expand Down
Loading