Skip to content

Commit c140bad

Browse files
authored
Bump all version numbers to prereleases (#184)
NOTE: this is not intended to have an associated crate release, just to denote that the code on `master` contains breaking changes Bumps versions to the following: - `crypto_box` v0.10.0-pre - `crypto_kx` v0.3.0-pre - `crypto_secretbox` v0.2.0-pre - `crypto_secretstream` v0.3.0-pre
1 parent c864eec commit c140bad

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crypto_box/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crypto_box"
3-
version = "0.9.1"
3+
version = "0.10.0-pre"
44
description = """
55
Pure Rust implementation of NaCl's crypto_box public-key authenticated
66
encryption primitive which combines the X25519 Elliptic Curve Diffie-Hellman
@@ -19,7 +19,7 @@ rust-version = "1.85"
1919

2020
[dependencies]
2121
aead = { version = "=0.6.0-rc.2", default-features = false }
22-
crypto_secretbox = { version = "0.1.1", default-features = false, path = "../crypto_secretbox" }
22+
crypto_secretbox = { version = "=0.2.0-pre", default-features = false, path = "../crypto_secretbox" }
2323
curve25519-dalek = { version = "=5.0.0-pre.1", default-features = false, features = ["zeroize"] }
2424
subtle = { version = "2", default-features = false }
2525
zeroize = { version = "1", default-features = false }

crypto_kx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crypto_kx"
3-
version = "0.2.1"
3+
version = "0.3.0-pre"
44
description = "Pure Rust implementation of libsodium's crypto_kx using BLAKE2"
55
authors = ["C4DT", "RustCrypto Developers"]
66
license = "Apache-2.0 OR MIT"

crypto_secretbox/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crypto_secretbox"
3-
version = "0.1.1"
3+
version = "0.2.0-pre"
44
description = """
55
Pure Rust implementation of the XSalsa20Poly1305 (a.k.a. NaCl crypto_secretbox)
66
authenticated encryption cipher as well as the libsodium variant of

crypto_secretstream/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crypto_secretstream"
3-
version = "0.2.0"
3+
version = "0.3.0-pre"
44
description = """
55
Pure Rust implementation of libsodium's crypto_secretstream secret-key using
66
ChaCha20 and Poly1305

0 commit comments

Comments
 (0)