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

## [Unreleased]

## [0.6.8](https://github.com/KarpelesLab/compcol/compare/v0.6.7...v0.6.8) - 2026-07-01

### Other

- *(lzss,huffman)* hash-chain match finder + table Huffman decode
- *(brotli,zstd)* faster encode on low-redundancy input

### Changed

- *(lzss)* replaced the encoder's O(N·n) brute-force ring-buffer match scan
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compcol"
version = "0.6.7"
version = "0.6.8"
edition = "2024"
# Edition 2024 stabilised in Rust 1.85. Code uses `let chains` (Rust 1.88)
# inside the brotli encoder and the io adapters, so 1.88 is the real floor.
Expand Down
Loading