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

## [Unreleased]

## [4.4.0](https://github.com/structured-world/coordinode-lsm-tree/compare/v4.3.1...v4.4.0) - 2026-04-09

### Added

- *(compression)* enable dictionary compression in pure Rust backend ([#229](https://github.com/structured-world/coordinode-lsm-tree/pull/229))

### Performance

- *(compression)* cache pre-compiled Dictionary across block decompress calls ([#227](https://github.com/structured-world/coordinode-lsm-tree/pull/227))

## [4.3.1](https://github.com/structured-world/coordinode-lsm-tree/compare/v4.3.0...v4.3.1) - 2026-04-06

### Performance
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "coordinode-lsm-tree"
description = "A K.I.S.S. implementation of log-structured merge trees (LSM-trees/LSMTs) — CoordiNode fork"
license = "Apache-2.0"
version = "4.3.1"
version = "4.4.0"
edition = "2024"
rust-version = "1.92"
readme = "README.md"
Expand Down
Loading