Skip to content

Commit

Permalink
Version bump to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
OtaK committed Mar 22, 2022
1 parent 7ba4635 commit 5d8b050
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ version = "0.1.0"
edition = "2021"

[dependencies]
openmls = "0.4.0"
openmls_traits = "0.1.0"
openmls_rust_crypto = "0.1.0"
core-crypto = { version = "0.1.0", path = "../crypto" }
core-crypto-keystore = { version = "0.1.0", path = "../keystore" }
mls-crypto-provider = { version = "0.1.0", path = "../mls-provider" }
openmls = "0.4"
openmls_traits = "0.1"
openmls_rust_crypto = "0.1"
core-crypto = { version = "0.2", path = "../crypto" }
core-crypto-keystore = { version = "0.2", path = "../keystore" }
mls-crypto-provider = { version = "0.2", path = "../mls-provider" }

uuid = "1.0.0-alpha"
clap = { version = "3", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions crypto-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "core-crypto-ffi"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "GPL-3.0-only"

Expand All @@ -13,7 +13,7 @@ default = []
mobile = ["uniffi", "uniffi_macros", "uniffi_build", "uniffi_bindgen"]

[dependencies]
core-crypto = { version = "0.1", path = "../crypto" }
core-crypto = { version = "0.2", path = "../crypto" }
# UniFFI - Android + iOS bindings - Runtime support
uniffi = { version = "0.17", optional = true }
uniffi_macros = { version = "0.17", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "core-crypto"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "GPL-3.0-only"

Expand All @@ -21,11 +21,11 @@ openmls_traits = "0.1"
tls_codec = "0.2"

[dependencies.core-crypto-keystore]
version = "0.1.0"
version = "0.2"
path = "../keystore"

[dependencies.mls-crypto-provider]
version = "0.1.0"
version = "0.2"
path = "../mls-provider"

[dev-dependencies]
Expand Down
10 changes: 5 additions & 5 deletions extras/anycrypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ default = []
eyre = "0.6"
thiserror = "1.0"
uuid = "0.8"
openmls = "0.4.0-pre"
openmls_rust_crypto = "0.1.0-pre"
openmls_traits = "0.1.0-pre"
openmls = "0.4"
openmls_rust_crypto = "0.1"
openmls_traits = "0.1"
proteus = "1.0"

[dependencies.core-crypto-keystore]
version = "0.1.0"
version = "0.2"
path = "../keystore"

[dependencies.mls-crypto-provider]
version = "0.1.0"
version = "0.2"
path = "../mls-provider"
4 changes: 2 additions & 2 deletions keystore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "core-crypto-keystore"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
license = "GPL-3.0-only"

Expand Down Expand Up @@ -35,7 +35,7 @@ barrel = { version = "0.7", features = ["sqlite3"] }
hex = { version = "0.4", optional = true }
security-framework = { version = "2.5.0-alpha", optional = true }

openmls_traits = { version = "0.1.0", optional = true }
openmls_traits = { version = "0.1", optional = true }
proteus = { version = "1.0", default-features = false, optional = true }

[dependencies.rusqlite]
Expand Down
4 changes: 2 additions & 2 deletions mls-provider/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mls-crypto-provider"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
license = "GPL-3.0-only"

Expand All @@ -13,5 +13,5 @@ openmls_rust_crypto = "0.1"
openmls_traits = "0.1"

[dependencies.core-crypto-keystore]
version = "0.1"
version = "0.2"
path = "../keystore"

0 comments on commit 5d8b050

Please sign in to comment.