Skip to content

Commit 5836865

Browse files
authored
Cut prereleases with hybrid-array v0.4 support (#715)
Releases the following: - `aead-stream` v0.6.0-rc.1 - `aes-gcm` v0.11.0-rc.1 - `aes-gcm-siv` v0.12.0-rc.1 - `aes-siv` v0.8.0-rc.1 - `chacha20poly1305` v0.11.0-rc.1 - `xaes-256-gcm` v0.1.0-rc.1
1 parent 4475ee8 commit 5836865

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

Cargo.lock

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

aead-stream/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aead-stream"
3-
version = "0.6.0-rc.0"
3+
version = "0.6.0-rc.1"
44
description = "Generic implementation of the STREAM online authenticated encryption construction"
55
authors = ["RustCrypto Developers"]
66
edition = "2024"

aes-gcm-siv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aes-gcm-siv"
3-
version = "0.12.0-rc.0"
3+
version = "0.12.0-rc.1"
44
description = """
55
Pure Rust implementation of the AES-GCM-SIV Misuse-Resistant Authenticated
66
Encryption Cipher (RFC 8452) with optional architecture-specific

aes-gcm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aes-gcm"
3-
version = "0.11.0-rc.0"
3+
version = "0.11.0-rc.1"
44
description = """
55
Pure Rust implementation of the AES-GCM (Galois/Counter Mode)
66
Authenticated Encryption with Associated Data (AEAD) Cipher

aes-siv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aes-siv"
3-
version = "0.8.0-rc.0"
3+
version = "0.8.0-rc.1"
44
description = """
55
Pure Rust implementation of the AES-SIV Misuse-Resistant Authenticated
66
Encryption Cipher (RFC 5297) with optional architecture-specific

chacha20poly1305/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chacha20poly1305"
3-
version = "0.11.0-rc.0"
3+
version = "0.11.0-rc.1"
44
description = """
55
Pure Rust implementation of the ChaCha20Poly1305 Authenticated Encryption
66
with Additional Data Cipher (RFC 8439) with optional architecture-specific

ocb3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ cipher = "0.5.0-rc.1"
2121
ctr = "0.10.0-rc.1"
2222
dbl = "0.5"
2323
subtle = { version = "2", default-features = false }
24-
aead-stream = { version = "0.6.0-rc.0", optional = true, default-features = false }
24+
aead-stream = { version = "0.6.0-rc.1", optional = true, default-features = false }
2525
zeroize = { version = "1", optional = true, default-features = false }
2626

2727
[dev-dependencies]

xaes-256-gcm/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xaes-256-gcm"
3-
version = "0.0.1-pre.0"
3+
version = "0.1.0-rc.1"
44
description = """
55
Pure Rust implementation of the XAES-256-GCM extended-nonce Authenticated
66
Encryption with Associated Data (AEAD).
@@ -18,9 +18,9 @@ rust-version = "1.85"
1818
[dependencies]
1919
aead = { version = "0.6.0-rc.1", default-features = false }
2020
aes = "0.9.0-rc.1"
21-
aes-gcm = { version = "0.11.0-rc.0", default-features = false, features = ["aes"] }
21+
aes-gcm = { version = "0.11.0-rc.1", default-features = false, features = ["aes"] }
2222
cipher = "0.5.0-rc.1"
23-
aead-stream = { version = "0.6.0-rc.0", optional = true, default-features = false }
23+
aead-stream = { version = "0.6.0-rc.1", optional = true, default-features = false }
2424

2525
[dev-dependencies]
2626
aead = { version = "0.6.0-rc.1", features = ["dev"], default-features = false }

0 commit comments

Comments
 (0)