v1.5.6.2
What's Changed
- feat: add StreamWriter and StreamReader by @SpringMT in #76
- Add support for dictionary use with streaming operations by @AndrewCEmil in #62
- Feature/dictionary standardized by @SpringMT in #77
Feature
Zstd.compress
supports:level
and:dict
keyword argsZstd.decompress
supports:dict
keyward argsZstd::StreamingCompress.new
supports:level
and:dict
keyword argsZstd::StreamingDecompress.new
supports:dict
keyword args
Improvemnt
Zstd.compress
usesZSTD_compressStream2
instead ofZSTD_compress
Zstd.decompress
usesZSTD_decompressDCtx
instead ofZSTD_decompress
Both of these changes maintain compatibility with previous versions.
Deprecation
Zstd.compress_using_dict
adds deprecation warning- use
Zstd.compress
with:dict
keyword args
- use
Zstd.decompress_using_dict
adds deprecation warning- use
Zstd.decompress
with:dict
keyword args
- use
Zstd.compress
withlevel
args add deprecation warning- use
Zstd.compress
with:level
keyword args
- use
Zstd::StreamingCompress.new
withlevel
args add deprecation warning- use
Zstd::StreamingCompress.new
with:level
keyword args
- use
New Contributors
- @AndrewCEmil made their first contribution in #62
Full Changelog: v1.5.6.1...v1.5.6.2