Skip to content

Commit

Permalink
Merge pull request openmls#1652 from openmls/franziskus/v0_6
Browse files Browse the repository at this point in the history
Bump crate versions for v0.6
  • Loading branch information
franziskuskiefer authored Sep 4, 2024
2 parents b9ebd9f + 5a67488 commit 5067034
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.6.0-pre.2 (2024-08-XX)
## 0.6.0 (2024-09-04)

### Added

Expand Down
4 changes: 2 additions & 2 deletions basic_credential/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmls_basic_credential"
version = "0.3.0-pre.2"
version = "0.3.0"
authors = ["OpenMLS Authors"]
edition = "2021"
description = "A Basic Credential implementation for OpenMLS"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/openmls/openmls/tree/main/basic_credential"
readme = "README.md"

[dependencies]
openmls_traits = { version = "0.3.0-pre.3", path = "../traits" }
openmls_traits = { version = "0.3.0", path = "../traits" }
tls_codec = { workspace = true }
serde = "1.0"

Expand Down
6 changes: 3 additions & 3 deletions libcrux_crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmls_libcrux_crypto"
version = "0.1.0-pre.3"
version = "0.1.0"
edition = "2021"
authors = ["OpenMLS Authors"]
description = "A crypto backend for OpenMLS based on libcrux implementing openmls_traits."
Expand All @@ -12,7 +12,7 @@ readme = "../README.md"
[dependencies]
getrandom = "0.2.12"
libcrux = { version = "=0.0.2-alpha.3", features = ["rand"] }
openmls_traits = { version = "0.3.0-pre.3", path = "../traits" }
openmls_memory_storage = { version = "0.3.0-pre.3", path = "../memory_storage" }
openmls_traits = { version = "0.3.0", path = "../traits" }
openmls_memory_storage = { version = "0.3.0", path = "../memory_storage" }
rand = "0.8.5"
tls_codec.workspace = true
4 changes: 2 additions & 2 deletions memory_storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "openmls_memory_storage"
authors = ["OpenMLS Authors"]
version = "0.3.0-pre.3"
version = "0.3.0"
edition = "2021"
description = "A very basic storage for OpenMLS implementing openmls_traits."
license = "MIT"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/openmls/openmls/tree/main/memory_storage"
readme = "README.md"

[dependencies]
openmls_traits = { version = "0.3.0-pre.3", path = "../traits" }
openmls_traits = { version = "0.3.0", path = "../traits" }
thiserror = "1.0"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
Expand Down
16 changes: 8 additions & 8 deletions openmls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmls"
version = "0.6.0-pre.3"
version = "0.6.0"
authors = ["OpenMLS Authors"]
edition = "2021"
description = "A Rust implementation of the Messaging Layer Security (MLS) protocol, as defined in RFC 9420."
Expand All @@ -12,17 +12,17 @@ keywords = ["MLS", "IETF", "RFC9420", "Encryption", "E2EE"]
exclude = ["/test_vectors"]

[dependencies]
openmls_traits = { version = "0.3.0-pre.3", path = "../traits" }
openmls_rust_crypto = { version = "0.3.0-pre.2", path = "../openmls_rust_crypto", optional = true }
openmls_basic_credential = { version = "0.3.0-pre.2", path = "../basic_credential", optional = true, features = [
openmls_traits = { version = "0.3.0", path = "../traits" }
openmls_rust_crypto = { version = "0.3.0", path = "../openmls_rust_crypto", optional = true }
openmls_basic_credential = { version = "0.3.0", path = "../basic_credential", optional = true, features = [
"clonable",
"test-utils",
] }
openmls_memory_storage = { version = "0.3.0-pre.3", path = "../memory_storage", features = [
openmls_memory_storage = { version = "0.3.0", path = "../memory_storage", features = [
"test-utils",
], optional = true }
openmls_test = { version = "0.1.0-pre.2", path = "../openmls_test", optional = true }
openmls_libcrux_crypto = { version = "0.1.0-pre.3", path = "../libcrux_crypto", optional = true }
openmls_test = { version = "0.1.0", path = "../openmls_test", optional = true }
openmls_libcrux_crypto = { version = "0.1.0", path = "../libcrux_crypto", optional = true }
serde = { version = "^1.0", features = ["derive"] }
log = { version = "0.4", features = ["std"] }
tls_codec = { workspace = true }
Expand Down Expand Up @@ -70,7 +70,7 @@ criterion = { version = "^0.5", default-features = false } # need to disable def
hex = { version = "0.4", features = ["serde"] }
itertools = "0.10"
lazy_static = "1.4"
openmls_traits = { version = "0.3.0-pre.3", path = "../traits", features = [
openmls_traits = { version = "0.3.0", path = "../traits", features = [
"test-utils",
] }
pretty_env_logger = "0.5"
Expand Down
6 changes: 3 additions & 3 deletions openmls_rust_crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "openmls_rust_crypto"
authors = ["OpenMLS Authors"]
version = "0.3.0-pre.2"
version = "0.3.0"
edition = "2021"
description = "A crypto backend for OpenMLS implementing openmls_traits using RustCrypto primitives."
license = "MIT"
Expand All @@ -10,8 +10,8 @@ repository = "https://github.com/openmls/openmls/tree/main/openmls_rust_crypto"
readme = "README.md"

[dependencies]
openmls_traits = { version = "0.3.0-pre.3", path = "../traits" }
openmls_memory_storage = { version = "0.3.0-pre.3", path = "../memory_storage" }
openmls_traits = { version = "0.3.0", path = "../traits" }
openmls_memory_storage = { version = "0.3.0", path = "../memory_storage" }
hpke = { version = "0.2.0", package = "hpke-rs", default-features = false, features = [
"hazmat",
"serialization",
Expand Down
8 changes: 4 additions & 4 deletions openmls_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmls_test"
version = "0.1.0-pre.2"
version = "0.1.0"
authors = ["OpenMLS Authors"]
edition = "2021"
description = "Test utility used by OpenMLS"
Expand All @@ -23,6 +23,6 @@ ansi_term = "0.12.1"
quote = "1.0"
rstest = { version = "0.17" }
rstest_reuse = { version = "0.5" }
openmls_rust_crypto = { version = "0.3.0-pre.2", path = "../openmls_rust_crypto" }
openmls_libcrux_crypto = { version = "0.1.0-pre.3", path = "../libcrux_crypto", optional = true }
openmls_traits = { version = "0.3.0-pre.3", path = "../traits" }
openmls_rust_crypto = { version = "0.3.0", path = "../openmls_rust_crypto" }
openmls_libcrux_crypto = { version = "0.1.0", path = "../libcrux_crypto", optional = true }
openmls_traits = { version = "0.3.0", path = "../traits" }
2 changes: 1 addition & 1 deletion traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmls_traits"
version = "0.3.0-pre.3"
version = "0.3.0"
authors = ["OpenMLS Authors"]
edition = "2021"
description = "Traits used by OpenMLS"
Expand Down

0 comments on commit 5067034

Please sign in to comment.