Skip to content
Open
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
18 changes: 18 additions & 0 deletions zstd/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.23](https://github.com/structured-world/structured-zstd/compare/v0.0.22...v0.0.23) - 2026-05-22

### Added

- *(frame)* magicless frame format support ([#26](https://github.com/structured-world/structured-zstd/pull/26)) ([#222](https://github.com/structured-world/structured-zstd/pull/222))

### Performance

- *(decode)* 8-slot software prefetch pipeline for sequence execution ([#208](https://github.com/structured-world/structured-zstd/pull/208)) ([#227](https://github.com/structured-world/structured-zstd/pull/227))
- *(encoder)* port donor ZSTD_compressBlock_fast — 4-cursor + per-level cParams + cmov + window-correctness (#198 phase 3) ([#229](https://github.com/structured-world/structured-zstd/pull/229))
- *(decoding)* integrate AVX2 unroll-2 wildcopy candidate ([#108](https://github.com/structured-world/structured-zstd/pull/108)) ([#223](https://github.com/structured-world/structured-zstd/pull/223))
- *(encoder)* wire donor-shape Fast kernel into MatchGeneratorDriver (#198 phase 1b) ([#217](https://github.com/structured-world/structured-zstd/pull/217))
- *(encoder)* donor-shape Fast kernel modules (#198 phase 1a) ([#215](https://github.com/structured-world/structured-zstd/pull/215))
- *(fse)* elide bounds check on init_state + update_state decode reads ([#214](https://github.com/structured-world/structured-zstd/pull/214))
- *(decode)* SIMD-16 fast path for short offsets {1, 2, 4} ([#213](https://github.com/structured-world/structured-zstd/pull/213))
- *(decode)* const-generic HUF kernel monomorphisation for SIMD-fallback ([#212](https://github.com/structured-world/structured-zstd/pull/212))
- *(decode)* port donor HUF 4-stream burst with sentinel-bit ctz ([#201](https://github.com/structured-world/structured-zstd/pull/201))

## [0.0.22](https://github.com/structured-world/structured-zstd/compare/v0.0.21...v0.0.22) - 2026-05-19

### Added
Expand Down
2 changes: 1 addition & 1 deletion zstd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "structured-zstd"
version = "0.0.22"
version = "0.0.23"
rust-version = "1.92"
authors = [
"Moritz Borcherding <moritz.borcherding@web.de>",
Expand Down
Loading