Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crates.io release #118

Merged
merged 2 commits into from Oct 14, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "gif"
license = "MIT/Apache-2.0"
version = "0.11.2"
version = "0.11.3"
description = "GIF de- and encoder"
authors = ["nwin <nwin@users.noreply.github.com>"]
readme = "README.md"
Expand Down
18 changes: 18 additions & 0 deletions Changes.md
@@ -1,3 +1,21 @@
# v0.11.3

Bugfixes:
- Fix panic while decoding some images, has no precise cause in the file.
- Warn about `set_extensions` being unimplemented...

Features:
- Added `StreamingDecoder::version` to query the precise version of the
standard used for encoding the file. This is merely a hint.
- Added `DecodeOptions::allow_unknown_blocks` to skip over unknown or
unspecified block kinds.

Optimization:
- `Frame::from_rgba` now recognizes when less than 256 colors are being used,
dynamically skipping the quantization phase.
- Encoding image chunks is faster and simpler


# v0.11.2

- Fix panic when LZW code size is invalid
Expand Down