Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

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

21 changes: 19 additions & 2 deletions keccak/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,31 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.2.0 (UNRELEASED)
## 0.2.0 (2026-02-26)

TODO: fill out rest of changelog
### Added
- `keccak_backend` configuration parameter with `armv8_asm`, `simd`,
and `soft-compact` values ([#105], [#106])
- `KeccakP1600` struct ([#107])

### Changed
- Edition changed to 2024 and MSRV bumped to 1.85 ([#89])
- Bump `cpufeatures` dependency to v0.3 ([#99])

### Removed
- `asm`, `simd`, and `no_unroll` crate features in favor of
the `keccak_backend` configuration parameter ([#105], [#106])
- `f1600` and `p1600` functions in favor of the `KeccakP1600` struct ([#107])

### Fixed
- Use `doc_cfg` in place of removed `doc_auto_cfg` feature ([#91])

[#89]: https://github.com/RustCrypto/sponges/pull/89
[#91]: https://github.com/RustCrypto/sponges/pull/91
[#99]: https://github.com/RustCrypto/sponges/pull/99
[#105]: https://github.com/RustCrypto/sponges/pull/105
[#106]: https://github.com/RustCrypto/sponges/pull/106
[#107]: https://github.com/RustCrypto/sponges/pull/107

## 0.1.6 (2026-02-13)
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion keccak/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "keccak"
version = "0.2.0-rc.2"
version = "0.2.0"
description = """
Pure Rust implementation of the Keccak sponge function including the keccak-f
and keccak-p variants
Expand Down