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

## [Unreleased]

## [0.1.4](https://github.com/Remade-With-Rust/rusty_flac/compare/v0.1.3...v0.1.4) - 2026-09-20

### Other

- 321 active installs
- *(encode)* reuse one frame BitWriter across the whole stream
- *(encode)* reserve the window-estimate Vec for every window
- *(encode)* borrow subframe samples instead of cloning them
- *(encode)* reuse the Rice-parameter buffers across plans too
- *(encode)* move the phase-1 window estimates into realize_arm
- *(encode)* reuse the autocorrelation buffers; drop the scratch macro
- *(encode)* own the partition-sum scratch on the encoder, reuse it
- *(encode)* size the MD5 chunk buffer to the block, not to CHUNK_FRAMES
- *(encode)* reuse Rice-parameter buffers across partition levels

## [0.1.3](https://github.com/Remade-With-Rust/rusty_flac/compare/v0.1.2...v0.1.3) - 2026-09-17

### Added
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 = "rusty_flac"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
rust-version = "1.85"
license = "Apache-2.0"
Expand Down