Skip to content

Commit a8e07e0

Browse files
authored
Cut new prereleases (#477)
Releases the following: - `ssh-cipher` v0.3.0-rc.8 - `ssh-encoding` v0.3.0-rc.8 - `ssh-key` v0.7.0-rc.9
1 parent 857d1fd commit a8e07e0

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Cargo.lock

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

ssh-cipher/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ssh-cipher"
3-
version = "0.3.0-rc.7"
3+
version = "0.3.0-rc.8"
44
description = """
55
Pure Rust implementation of SSH symmetric encryption including support for the
66
modern aes128-gcm@openssh.com/aes256-gcm@openssh.com and
@@ -20,7 +20,7 @@ rust-version = "1.85"
2020

2121
[dependencies]
2222
cipher = "0.5"
23-
encoding = { package = "ssh-encoding", version = "0.3.0-rc.7" }
23+
encoding = { package = "ssh-encoding", version = "0.3.0-rc.8" }
2424

2525
# optional dependencies
2626
aead = { version = "0.6.0-rc.10", optional = true, default-features = false }

ssh-encoding/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ssh-encoding"
3-
version = "0.3.0-rc.7"
3+
version = "0.3.0-rc.8"
44
description = """
55
Pure Rust implementation of SSH data type decoders/encoders as described
66
in RFC4251

ssh-key/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ssh-key"
3-
version = "0.7.0-rc.8"
3+
version = "0.7.0-rc.9"
44
description = """
55
Pure Rust implementation of SSH key file format decoders/encoders as described
66
in RFC4251/RFC4253 and OpenSSH key formats, as well as "sshsig" signatures and
@@ -19,13 +19,13 @@ rust-version = "1.85"
1919

2020
# ssh-cipher
2121
[dependencies.cipher]
22-
version = "0.3.0-rc.7"
22+
version = "0.3.0-rc.8"
2323
package = "ssh-cipher"
2424
features = ["zeroize"]
2525

2626
# ssh-encoding
2727
[dependencies.encoding]
28-
version = "0.3.0-rc.7"
28+
version = "0.3.0-rc.8"
2929
package = "ssh-encoding"
3030
features = ["base64", "digest", "pem", "subtle", "zeroize"]
3131

ssh-protocol/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ edition = "2024"
1616
rust-version = "1.85"
1717

1818
[dependencies]
19-
cipher = { package = "ssh-cipher", version = "0.3.0-rc.7", default-features = false }
20-
encoding = { package = "ssh-encoding", version = "0.3.0-rc.7", default-features = false }
19+
cipher = { package = "ssh-cipher", version = "0.3.0-rc.8", default-features = false }
20+
encoding = { package = "ssh-encoding", version = "0.3.0-rc.8", default-features = false }
2121
key = { package = "ssh-key", version = "0.7.0-rc.8", default-features = false }
2222

2323
[features]

0 commit comments

Comments
 (0)