Skip to content

Commit f427563

Browse files
authored
Release groestl, md2, md4, ripemd320, whirlpool v0.9.0 (#169)
Releases the following new versions after the `digest` v0.9 (MSRV 1.41+) and 2018 edition upgrade: - `groestl` v0.9.0 - `md2` v0.9.0 - `md4` v0.9.0 - `ripemd320` v0.9.0 - `whirlpool` v0.9.0
1 parent 15c3060 commit f427563

File tree

11 files changed

+201
-10
lines changed

11 files changed

+201
-10
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.

groestl/CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## 0.9.0 (2020-06-12)
9+
### Changed
10+
- Bump `opaque-debug` to v0.3.0 ([#168])
11+
- Bump `digest` to v0.9 release; MSRV 1.41 ([#155])
12+
- Use new `*Dirty` traits from the `digest` crate ([#153])
13+
- Bump `block-buffer` to v0.8 release ([#151])
14+
- Rename `*result*` to `finalize` ([#148])
15+
- Upgrade to Rust 2018 edition ([#122])
16+
17+
[#168]: https://github.com/RustCrypto/hashes/pull/168
18+
[#155]: https://github.com/RustCrypto/hashes/pull/155
19+
[#153]: https://github.com/RustCrypto/hashes/pull/153
20+
[#151]: https://github.com/RustCrypto/hashes/pull/151
21+
[#148]: https://github.com/RustCrypto/hashes/pull/148
22+
[#122]: https://github.com/RustCrypto/hashes/pull/148
23+
24+
## 0.8.0 (2018-10-02)
25+
26+
## 0.7.0 (2017-11-15)
27+
28+
## 0.3.0 (2017-06-12)
29+
30+
## 0.2.2 (2017-06-04)
31+
32+
## 0.2.1 (2017-05-02)
33+
34+
## 0.2.0 (2017-04-06)
35+
36+
## 0.1.0 (2017-01-23)

groestl/Cargo.toml

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

md2/CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## 0.9.0 (2020-06-12)
9+
### Changed
10+
- Bump `opaque-debug` to v0.3.0 ([#168])
11+
- Bump `digest` to v0.9 release; MSRV 1.41 ([#155])
12+
- Use new `*Dirty` traits from the `digest` crate ([#153])
13+
- Bump `block-buffer` to v0.8 release ([#151])
14+
- Rename `*result*` to `finalize` ([#148])
15+
- Upgrade to Rust 2018 edition ([#125])
16+
17+
[#168]: https://github.com/RustCrypto/hashes/pull/168
18+
[#155]: https://github.com/RustCrypto/hashes/pull/155
19+
[#153]: https://github.com/RustCrypto/hashes/pull/153
20+
[#151]: https://github.com/RustCrypto/hashes/pull/151
21+
[#148]: https://github.com/RustCrypto/hashes/pull/148
22+
[#125]: https://github.com/RustCrypto/hashes/pull/125
23+
24+
## 0.8.0 (2018-10-02)
25+
26+
## 0.7.0 (2017-11-15)
27+
28+
## 0.3.0 (2017-06-12)
29+
30+
## 0.2.1 (2017-05-02)
31+
32+
## 0.2.0 (2017-04-06)
33+
34+
## 0.1.2 (2017-01-20)
35+
36+
## 0.1.1 (2017-01-12)
37+
38+
## 0.1.0 (2017-01-09)

md2/Cargo.toml

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

md4/CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## 0.9.0 (2020-06-12)
9+
### Changed
10+
- Bump `opaque-debug` to v0.3.0 ([#168])
11+
- Bump `digest` to v0.9 release; MSRV 1.41 ([#155])
12+
- Use new `*Dirty` traits from the `digest` crate ([#153])
13+
- Bump `block-buffer` to v0.8 release ([#151])
14+
- Rename `*result*` to `finalize` ([#148])
15+
- Upgrade to Rust 2018 edition ([#127])
16+
17+
[#168]: https://github.com/RustCrypto/hashes/pull/168
18+
[#155]: https://github.com/RustCrypto/hashes/pull/155
19+
[#153]: https://github.com/RustCrypto/hashes/pull/153
20+
[#151]: https://github.com/RustCrypto/hashes/pull/151
21+
[#148]: https://github.com/RustCrypto/hashes/pull/148
22+
[#127]: https://github.com/RustCrypto/hashes/pull/127
23+
24+
## 0.8.0 (2018-10-02)
25+
26+
## 0.7.0 (2017-11-15)
27+
28+
## 0.6.0 (2017-06-12)
29+
30+
## 0.5.0 (2017-04-06)
31+
32+
## 0.4.1 (2017-01-20)
33+
34+
## 0.4.0 (2016-12-25)
35+
36+
## 0.3.1 (2016-11-17)
37+
38+
## 0.3.0 (2016-11-17)
39+
40+
## 0.2.0 (2016-11-03)
41+
42+
## 0.1.0 (2016-10-13)

md4/Cargo.toml

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

ripemd320/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## 0.9.0 (2020-06-12)
9+
### Changed
10+
- Bump `opaque-debug` to v0.3.0 ([#168])
11+
- Bump `digest` to v0.9 release; MSRV 1.41 ([#155])
12+
- Use new `*Dirty` traits from the `digest` crate ([#153])
13+
- Bump `block-buffer` to v0.8 release ([#151])
14+
- Rename `*result*` to `finalize` ([#148])
15+
- Upgrade to Rust 2018 edition ([#130])
16+
17+
[#168]: https://github.com/RustCrypto/hashes/pull/168
18+
[#155]: https://github.com/RustCrypto/hashes/pull/155
19+
[#153]: https://github.com/RustCrypto/hashes/pull/153
20+
[#151]: https://github.com/RustCrypto/hashes/pull/151
21+
[#148]: https://github.com/RustCrypto/hashes/pull/148
22+
[#130]: https://github.com/RustCrypto/hashes/pull/130
23+
24+
## 0.8.0 (2019-02-11)
25+
- Initial release

ripemd320/Cargo.toml

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

whirlpool/CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## 0.9.0 (2020-06-12)
9+
### Changed
10+
- Bump `opaque-debug` to v0.3.0 ([#168])
11+
- Bump `digest` to v0.9 release; MSRV 1.41 ([#155])
12+
- Use new `*Dirty` traits from the `digest` crate ([#153])
13+
- Bump `block-buffer` to v0.8 release ([#151])
14+
- Rename `*result*` to `finalize` ([#148])
15+
- Upgrade to Rust 2018 edition ([#137])
16+
17+
[#168]: https://github.com/RustCrypto/hashes/pull/168
18+
[#155]: https://github.com/RustCrypto/hashes/pull/155
19+
[#153]: https://github.com/RustCrypto/hashes/pull/153
20+
[#151]: https://github.com/RustCrypto/hashes/pull/151
21+
[#148]: https://github.com/RustCrypto/hashes/pull/148
22+
[#137]: https://github.com/RustCrypto/hashes/pull/148
23+
24+
## 0.8.1 (2018-11-14)
25+
26+
## 0.8.0 (2018-10-02)
27+
28+
## 0.7.1 (2018-04-27)
29+
30+
## 0.7.0 (2017-11-15)
31+
32+
## 0.6.0 (2017-06-12)
33+
34+
## 0.5.3 (2017-06-04)
35+
36+
## 0.5.2 (2017-05-09)
37+
38+
## 0.5.1 (2017-05-02)
39+
40+
## 0.5.0 (2017-04-06)
41+
42+
## 0.4.1 (2017-01-20)
43+
44+
## 0.4.0 (2016-12-25)
45+
46+
## 0.3.0 (2016-11-17)
47+
48+
## 0.2.0 (2016-10-14)
49+
50+
## 0.1.0 (2016-10-06

0 commit comments

Comments
 (0)