Skip to content

Commit

Permalink
Bump mls-rs-identity-x509 version to 0.14
Browse files Browse the repository at this point in the history
The previous commit removed a few public methods, implying that we
need a SemVer breaking change. Since the types are re-exported in
mls-rs, I also bumped the version of that crate.
  • Loading branch information
mgeisler committed Jan 13, 2025
1 parent 71bae7d commit 7f7cd2c
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion mls-rs-crypto-awslc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ aws-lc-fips-sys = { version = "0.12.0", optional = true }
mls-rs-core = { path = "../mls-rs-core", version = "0.20.0" }
mls-rs-crypto-hpke = { path = "../mls-rs-crypto-hpke", version = "0.11.0" }
mls-rs-crypto-traits = { path = "../mls-rs-crypto-traits", version = "0.12.0" }
mls-rs-identity-x509 = { path = "../mls-rs-identity-x509", version = "0.13.0" }
mls-rs-identity-x509 = { path = "../mls-rs-identity-x509", version = "0.14.0" }
thiserror = "1.0.40"
zeroize = { version = "1", features = ["zeroize_derive"] }
maybe-async = "0.2.10"
Expand Down
2 changes: 1 addition & 1 deletion mls-rs-crypto-openssl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default = ["x509"]
[dependencies]
openssl = { version = "0.10.40" }
mls-rs-core = { path = "../mls-rs-core", version = "0.20.0" }
mls-rs-identity-x509 = { path = "../mls-rs-identity-x509", optional = true, version = "0.13.0" }
mls-rs-identity-x509 = { path = "../mls-rs-identity-x509", optional = true, version = "0.14.0" }
mls-rs-crypto-hpke = { path = "../mls-rs-crypto-hpke", version = "0.11.0" }
mls-rs-crypto-traits = { path = "../mls-rs-crypto-traits", version = "0.12.0" }
thiserror = "1.0.40"
Expand Down
2 changes: 1 addition & 1 deletion mls-rs-crypto-rustcrypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ ed25519-dalek = { version = "2", default-features = false, features = ["alloc",
sec1 = { version = "0.7", default-features = false, features = ["alloc"] }

# X509 feature
mls-rs-identity-x509 = { path = "../mls-rs-identity-x509", optional = true, version = "0.13.0" }
mls-rs-identity-x509 = { path = "../mls-rs-identity-x509", optional = true, version = "0.14.0" }
x509-cert = { version = "0.2", optional = true, features = ["std"] }
spki = { version = "0.7", optional = true, features = ["std", "alloc"] }
const-oid = { version = "0.9", optional = true, features = ["std"] }
Expand Down
4 changes: 2 additions & 2 deletions mls-rs-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ std = ["mls-rs/std", "safer-ffi-gen/std"]
x509 = ["mls-rs-identity-x509"]

[dependencies]
mls-rs = { path = "../mls-rs", version = "0.43.0", features = ["ffi"] }
mls-rs = { path = "../mls-rs", version = "0.44.0", features = ["ffi"] }
mls-rs-crypto-openssl = { path = "../mls-rs-crypto-openssl", version = "0.11.0", optional = true }
mls-rs-identity-x509 = { path = "../mls-rs-identity-x509", version = "0.13.0", optional = true }
mls-rs-identity-x509 = { path = "../mls-rs-identity-x509", version = "0.14.0", optional = true }
mls-rs-provider-sqlite = { path = "../mls-rs-provider-sqlite", version = "0.14.0", default-features = false, optional = true }
safer-ffi = { version = "0.1.7", default-features = false }
safer-ffi-gen = { version = "0.9.2", default-features = false }
2 changes: 1 addition & 1 deletion mls-rs-identity-x509/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mls-rs-identity-x509"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
description = "X509 Identity utilities for mls-rs"
homepage = "https://github.com/awslabs/mls-rs"
Expand Down
2 changes: 1 addition & 1 deletion mls-rs-uniffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ name = "mls_rs_uniffi"
[dependencies]
async-trait = "0.1.77"
maybe-async = "0.2.10"
mls-rs = { version = "0.43.0", path = "../mls-rs" }
mls-rs = { version = "0.44.0", path = "../mls-rs" }
mls-rs-core = { version = "0.20.0", path = "../mls-rs-core" }
mls-rs-crypto-openssl = { version = "0.11.0", path = "../mls-rs-crypto-openssl" }
thiserror = "1.0.57"
Expand Down
4 changes: 2 additions & 2 deletions mls-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mls-rs"
version = "0.43.3"
version = "0.44.0"
edition = "2021"
description = "An implementation of Messaging Layer Security (RFC 9420)"
homepage = "https://github.com/awslabs/mls-rs"
Expand Down Expand Up @@ -52,7 +52,7 @@ fuzz_util = ["test_util", "default", "dep:once_cell", "dep:mls-rs-crypto-openssl

[dependencies]
mls-rs-core = { path = "../mls-rs-core", default-features = false, version = "0.20.0" }
mls-rs-identity-x509 = { path = "../mls-rs-identity-x509", default-features = false, version = "0.13.0", optional = true }
mls-rs-identity-x509 = { path = "../mls-rs-identity-x509", default-features = false, version = "0.14.0", optional = true }
zeroize = { version = "1", default-features = false, features = ["alloc", "zeroize_derive"] }
mls-rs-codec = { version = "0.5", path = "../mls-rs-codec", default-features = false}
thiserror = { version = "1.0.40", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion mls-rs/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2021"
cargo-fuzz = true

[dependencies]
mls-rs = { version = "0.43.0", path = "..", features = ["arbitrary", "fuzz_util"] }
mls-rs = { version = "0.44.0", path = "..", features = ["arbitrary", "fuzz_util"] }
futures = "0.3.25"
libfuzzer-sys = "0.4"
once_cell = "1.13.0"
Expand Down
2 changes: 1 addition & 1 deletion mls-rs/test_harness_integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
mls-rs = { version = "0.43.0", path = "..", default-features = false, features = ["std", "external_client"]}
mls-rs = { version = "0.44.0", path = "..", default-features = false, features = ["std", "external_client"]}
tonic = "0.10.2"
prost = "0.12.1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
Expand Down

0 comments on commit 7f7cd2c

Please sign in to comment.