Bump all workspace crates, the node package and pyproject to 2.4.0, finalize the changelog and add upgrade notes for the search behaviour changes. Co-Authored-By: Claude Fable 5.1 <[email protected]>
clawhdf5-filters
Filter and compression pipeline for clawhdf5.
Features
- DEFLATE compression/decompression
- Fast deflate via zlib-ng (
fast-deflatefeature) - Apple Compression framework support (
apple-compressionfeature)
Usage
use clawhdf5_filters::{deflate_decode, deflate_encode};
let compressed = deflate_encode(&data, 6).unwrap();
let decompressed = deflate_decode(&compressed).unwrap();
License
MIT