Skip to content

Commit ed7a207

Browse files
authored
Cut new prereleases (#770)
Releases the following `rc.0` versions for crates which have not previously received such a release and were previously tagged `-pre`: - `ascon-hash256` v0.5.0-rc.0 - `fsb` v0.2.0-rc.0 - `gost94` v0.11.0-rc.0 - `groestl` v0.11.0-rc.0 - `jh` v0.2.0-rc.0 - `k12` v0.4.0-rc.0 - `md2` v0.11.0-rc.0 - `md4` v0.11.0-rc.0 - `sha1-checked` v0.11.0-rc.0 - `shabal` v0.5.0-rc.0 - `skein` v0.2.0-rc.0 - `tiger` v0.3.0-rc.0 Closes #766
1 parent bf56f3c commit ed7a207

File tree

15 files changed

+31
-69
lines changed

15 files changed

+31
-69
lines changed

Cargo.lock

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

ascon-hash256/CHANGELOG.md

Lines changed: 1 addition & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -2,42 +2,4 @@
22
All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6-
7-
## 0.3.0 (UNRELEASED)
8-
### Changed
9-
- Edition changed to 2024 and MSRV bumped to 1.85 ([#652])
10-
- Relax MSRV policy and allow MSRV bumps in patch releases
11-
- Update to `digest` v0.11
12-
- Replace type aliases with newtypes ([#678])
13-
- Adopt to changes from NIST draft
14-
- Remove `AsconAHash` and `AsconAXof`
15-
- Rename `AsonHash` to `AsconHAsh256`
16-
- Rename `AsconXof` to `AsconXof128`
17-
- Implementation of the `SerializableState` trait ([#716])
18-
19-
[#652]: https://github.com/RustCrypto/hashes/pull/652
20-
[#678]: https://github.com/RustCrypto/hashes/pull/678
21-
[#716]: https://github.com/RustCrypto/hashes/pull/716
22-
23-
## 0.2.0 (2023-03-21)
24-
### Changed
25-
- Drop MSRV back to 1.56 and keep it in sync with `ascon` ([#459])
26-
- Relicense as Apache-2.0 or MIT ([#459])
27-
- Renamed public types to follow UpperCamelCase naming convention ([#459])
28-
- `AsconXOF` -> `AsconXof`
29-
- `AsconXOFReader` -> `AsconXofReader`
30-
- `AsconAXOF` -> `AsconAXof`
31-
- `ASconAXOFReader`-> `AsconAXofReader`
32-
33-
[#459]: https://github.com/RustCrypto/hashes/pull/459
34-
35-
## 0.1.1 (2023-03-17)
36-
37-
* Use `aead` instead of `aead-core`.
38-
* Bump MSRV to 1.60.
39-
* Add benchmarks.
40-
41-
## 0.1 (2022-06-03)
42-
43-
* Initial release.
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

ascon-hash256/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ascon-hash256"
3-
version = "0.5.0-pre"
3+
version = "0.5.0-rc.0"
44
description = "Implementation of Ascon-Hash256 and Ascon-XOF256"
55
authors = [
66
"Sebastian Ramacher <sebastian.ramacher@ait.ac.at>",

ascon-hash256/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RustCrypto: Ascon
1+
# RustCrypto: Ascon-Hash256 and Ascon-XOF128
22

33
[![crate][crate-image]][crate-link]
44
[![Docs][docs-image]][docs-link]
@@ -7,8 +7,8 @@
77
![Rust Version][rustc-image]
88
[![Project Chat][chat-image]][chat-link]
99

10-
Pure Rust implementation of the lightweight cryptographic hash function [AsconHash256][1] and the
11-
extendable output functions (XOF) AsconXOF256.
10+
Pure Rust implementation of the lightweight cryptographic hash function [Ascon-Hash256][1] and the
11+
extendable output functions (XOF) Ascon-XOF128.
1212

1313
## Security Notes
1414

fsb/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fsb"
3-
version = "0.2.0-pre"
3+
version = "0.2.0-rc.0"
44
description = "FSB hash function"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -14,7 +14,7 @@ categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
1616
digest = "0.11.0-rc.5"
17-
whirlpool = { version = "0.11.0-rc.1", default-features = false }
17+
whirlpool = { version = "0.11.0-rc.3", default-features = false }
1818

1919
[dev-dependencies]
2020
digest = { version = "0.11.0-rc.5", features = ["dev"] }

gost94/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gost94"
3-
version = "0.11.0-pre"
3+
version = "0.11.0-rc.0"
44
description = "GOST R 34.11-94 hash function"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

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.11.0-pre"
3+
version = "0.11.0-rc.0"
44
description = "Grøstl hash function"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

jh/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jh"
3-
version = "0.2.0-pre"
3+
version = "0.2.0-rc.0"
44
description = "Pure Rust implementation of the JH cryptographic hash function"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"

k12/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "k12"
3-
version = "0.4.0-pre"
3+
version = "0.4.0-rc.0"
44
description = "Pure Rust implementation of the KangarooTwelve hash function"
55
authors = ["RustCrypto Developers", "Diggory Hardy <github1@dhardy.name>"]
66
license = "Apache-2.0 OR MIT"
@@ -14,7 +14,7 @@ categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
1616
digest = "0.11.0-rc.5"
17-
sha3 = { version = "0.11.0-rc.1", default-features = false }
17+
sha3 = { version = "0.11.0-rc.3", default-features = false }
1818

1919
[dev-dependencies]
2020
digest = { version = "0.11.0-rc.5", features = ["alloc", "dev"] }

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.11.0-pre"
3+
version = "0.11.0-rc.0"
44
license = "MIT OR Apache-2.0"
55
authors = ["RustCrypto Developers"]
66
description = "MD2 hash function"

0 commit comments

Comments
 (0)