From 5d8654dd160549777729a3888cb28172d450e078 Mon Sep 17 00:00:00 2001 From: Jonathan Behrens Date: Sun, 6 Oct 2024 13:41:02 -0700 Subject: [PATCH] Release 0.2.0 (#112) --- CHANGES.md | 19 ++++++++++++++++++- Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 482a230..84b165d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,23 @@ # Release Notes -### Versios 0.1.3 +### Version 0.2.0 + +Breaking Changes: +- `WebPDecoder` now requires the passed reader implement `BufRead`. + +Changes: +- Add `EncoderParams` to make predictor transform optional. + +Bug Fixes: +- Several bug fixes in animation compositing. +- Fix indexing for filling image regions with tivial huffman codes. +- Properly update the color cache when trivial huffman codes are used. + +Optimizations: +- Substantially faster decoding of lossless images, by switching to a + table-based Huffman decoder and a variety of smaller optimizations. + +### Version 0.1.3 Changes: - Accept files with out-of-order "unknown" chunks. diff --git a/Cargo.toml b/Cargo.toml index 023ae35..6c71792 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "image-webp" -version = "0.1.3" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" rust-version = "1.67.1"