Skip to content

Commit e41b547

Browse files
committed
ghash v0.5.1
Added - add `new_with_init_block` (#195)
1 parent 8ab424c commit e41b547

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ghash/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.5.1 (2024-03-03)
9+
### Added
10+
- add `new_with_init_block` ([#195])
11+
12+
[#195]: https://github.com/RustCrypto/universal-hashes/pull/195
13+
814
## 0.5.0 (2022-07-31)
915
### Changed
1016
- Relax `zeroize` constraints ([#147])

ghash/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ghash"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
description = """
@@ -17,7 +17,7 @@ edition = "2021"
1717

1818
[dependencies]
1919
opaque-debug = "0.3"
20-
polyval = { version = "0.6", path = "../polyval" }
20+
polyval = { version = "0.6.2", path = "../polyval" }
2121

2222
# optional dependencies
2323
zeroize = { version = "1", optional = true, default-features = false }

0 commit comments

Comments
 (0)