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

Release 0.24.9 #2152

Merged
merged 1 commit into from
Feb 23, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 16 additions & 9 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,22 @@

## Changes

### Unreleased
### Version 0.24.9

- More convenient to use buffers will be added in the future. In particular,
improving initialization, passing of output buffers, and adding a more
complete representation for layouts. The plan is for these to interact with
the rest of the library through a byte-based interface similar to
`ImageDecoder`.
See ongoing work on [`image-canvas`](https://github.com/image-rs/canvas) if
you want to participate.
Structural changes:
- Relicense to MIT OR Apache-2.0
- Increase MSRV 1.63.0

New features:
- Support limits in PNG animation decoding.
- Added offsets to SubImage to compensate for the now-deprecated bounds call
from GenericImageView.

Bug fixes:
- Correct limit tests for TIFF.
- Avoid overflow in gif::Decoder::buffer_size.
- Return error instead of using asssertion for Avif decoder unsupported or
invalid bit depth.

### Version 0.24.8

Expand All @@ -27,7 +34,7 @@ New features:
- TGA encoder now supports RLE encoding.
- Add rayon parallel iterators behind an optional `rayon` feature.
- Support CMYK TIFF images.
- Implement From<DynamicImage> for all image types.
- Implement `From<DynamicImage>` for all image types.

Bug fixes:
- Fix decoding pngs with invalid text chunks.
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 = "image"
version = "0.24.8"
version = "0.24.9"
edition = "2021"
resolver = "2"

Expand Down
Loading