Skip to content

Commit b1c5032

Browse files
authored
Fix MSRV issues by re-releasing sha1, sha2, sha3, md5, and whirlpool. Take 2. (#401)
1 parent db5af59 commit b1c5032

12 files changed

+44
-11
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[workspace]
2-
resolver = "2"
2+
# This causes issues like https://github.com/RustCrypto/hashes/issues/396
3+
# Do not uncomment it until MSRV is bumped to 1.51 or higher.
4+
# resolver = "2"
35
members = [
46
"blake2",
57
"fsb",

md5/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.10.4 (2022-09-02)
9+
### Fixed
10+
- MSRV issue which was not resolved by v0.10.3 ([#401])
11+
12+
[#401]: https://github.com/RustCrypto/hashes/pull/401
13+
814
## 0.10.3 (2022-09-02)
915
### Fixed
1016
- MSRV issue caused by publishing v0.10.2 using a buggy Nightly toolchain ([#399])

md5/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "md-5"
3-
version = "0.10.3"
3+
version = "0.10.4"
44
description = "MD5 hash function"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

sha1/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.10.4 (2022-09-02)
9+
### Fixed
10+
- MSRV issue which was not resolved by v0.10.3 ([#401])
11+
12+
[#401]: https://github.com/RustCrypto/hashes/pull/401
13+
814
## 0.10.3 (2022-09-02)
915
### Fixed
1016
- MSRV issue caused by publishing v0.10.2 using a buggy Nightly toolchain ([#399])

sha1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sha1"
3-
version = "0.10.3" # on v0.10.x releases also release the sha-1 crate as well
3+
version = "0.10.4"
44
description = "SHA-1 hash function"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

sha2/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.10.5 (2022-09-02)
9+
### Fixed
10+
- MSRV issue which was not resolved by v0.10.4 ([#401])
11+
12+
[#401]: https://github.com/RustCrypto/hashes/pull/401
13+
814
## 0.10.4 (2022-09-02)
915
### Fixed
1016
- MSRV issue caused by publishing v0.10.3 using a buggy Nightly toolchain ([#399])

sha2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sha2"
3-
version = "0.10.4"
3+
version = "0.10.5"
44
description = """
55
Pure Rust implementation of the SHA-2 hash function family
66
including SHA-224, SHA-256, SHA-384, and SHA-512.

sha3/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.10.4 (2022-09-02)
9+
### Fixed
10+
- MSRV issue which was not resolved by v0.10.3 ([#401])
11+
12+
[#401]: https://github.com/RustCrypto/hashes/pull/401
13+
814
## 0.10.3 (2022-09-02)
915
### Fixed
1016
- MSRV issue caused by publishing v0.10.2 using a buggy Nightly toolchain ([#399])

sha3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sha3"
3-
version = "0.10.3"
3+
version = "0.10.4"
44
description = "SHA-3 (Keccak) hash function"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

whirlpool/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.10.4 (2022-09-02)
9+
### Fixed
10+
- MSRV issue which was not resolved by v0.10.3 ([#401])
11+
12+
[#401]: https://github.com/RustCrypto/hashes/pull/401
13+
14+
815
## 0.10.3 (2022-09-02)
916
### Fixed
1017
- MSRV issue caused by publishing v0.10.2 using a buggy Nightly toolchain ([#399])

whirlpool/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "whirlpool"
3-
version = "0.10.3"
3+
version = "0.10.4"
44
description = "Whirlpool hash function"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)