Skip to content

Commit

Permalink
Cut pre.3 prereleases (#559)
Browse files Browse the repository at this point in the history
Cuts a new release of every crate which previously received a pre.2
prerelease, i.e. is used as a (dev-)dependency in downstream projects
that need to be upgraded.

This includes the following:

- `belt-hash` v0.2.0-pre.3
- `md-5` v0.11.0-pre.3
- `sha1` v0.11.0-pre.3
- `sha2` v0.11.0-pre.3
- `sha3` v0.11.0-pre.3
- `sm3` v0.5.0-pre.3
- `streebog` v0.11.0-pre.3
  • Loading branch information
tarcieri committed Feb 1, 2024
1 parent 9d2db2e commit e4dcf12
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion belt-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "belt-hash"
version = "0.2.0-pre.2"
version = "0.2.0-pre.3"
description = "BelT hash function (STB 34.101.31-2020)"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion k12/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rust-version = "1.71"

[dependencies]
digest = { version = "=0.11.0-pre.8", default-features = false, features = ["core-api"] }
sha3 = { version = "=0.11.0-pre.2", default-features = false, path = "../sha3" }
sha3 = { version = "=0.11.0-pre.3", default-features = false, path = "../sha3" }

[dev-dependencies]
digest = { version = "=0.11.0-pre.8", features = ["alloc", "dev"] }
Expand Down
2 changes: 1 addition & 1 deletion md5/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "md-5"
version = "0.11.0-pre.2"
version = "0.11.0-pre.3"
description = "MD5 hash function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion sha1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sha1"
version = "0.11.0-pre.2"
version = "0.11.0-pre.3"
description = "SHA-1 hash function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion sha2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sha2"
version = "0.11.0-pre.2"
version = "0.11.0-pre.3"
description = """
Pure Rust implementation of the SHA-2 hash function family
including SHA-224, SHA-256, SHA-384, and SHA-512.
Expand Down
2 changes: 1 addition & 1 deletion sha3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sha3"
version = "0.11.0-pre.2"
version = "0.11.0-pre.3"
description = """
Pure Rust implementation of SHA-3, a family of Keccak-based hash functions
including the SHAKE family of eXtendable-Output Functions (XOFs), as well as
Expand Down
2 changes: 1 addition & 1 deletion sm3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sm3"
version = "0.5.0-pre.2"
version = "0.5.0-pre.3"
description = "SM3 (OSCCA GM/T 0004-2012) hash function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion streebog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "streebog"
version = "0.11.0-pre.2"
version = "0.11.0-pre.3"
description = "Streebog (GOST R 34.11-2012) hash function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit e4dcf12

Please sign in to comment.