Skip to content

Commit 5957932

Browse files
authored
Cut new prereleases (#468)
Releases the following: - `ssh-cipher` v0.3.0-rc.7 - `ssh-encoding` v0.3.0-rc.7 - `ssh-key` v0.7.0-rc.8
1 parent 9220f9f commit 5957932

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

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.6"
3+
version = "0.3.0-rc.7"
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.0-rc.6"
23-
encoding = { package = "ssh-encoding", version = "0.3.0-rc.6" }
23+
encoding = { package = "ssh-encoding", version = "0.3.0-rc.7" }
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.6"
3+
version = "0.3.0-rc.7"
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.7"
3+
version = "0.7.0-rc.8"
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.6"
22+
version = "0.3.0-rc.7"
2323
package = "ssh-cipher"
2424
features = ["zeroize"]
2525

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

ssh-protocol/Cargo.toml

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

1818
[dependencies]
19-
cipher = { package = "ssh-cipher", version = "0.3.0-rc.6", default-features = false }
20-
encoding = { package = "ssh-encoding", version = "0.3.0-rc.6", default-features = false }
21-
key = { package = "ssh-key", version = "0.7.0-rc.7", default-features = false }
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 }
21+
key = { package = "ssh-key", version = "0.7.0-rc.8", default-features = false }
2222

2323
[features]
2424
default = ["std"]

0 commit comments

Comments
 (0)