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.25.5 with 10-bit AVIF and bugfixes #2378

Merged
merged 5 commits into from
Nov 5, 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
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@

## Changes

### Version 0.25.5

Features:
- Added support for decoding 10-bit and 12-bit AVIF
- Initial, opt-in serde support for an enum. This may be extended to other types in the future.

Bug fixes:
- [Multiple bug fixes in AVIF decoding](https://github.com/image-rs/image/pull/2373)
- The `rayon` feature now correctly toggles the use of `rayon` when encoding AVIF. (Previously it would be either always on or always off depending on the version of the `ravif` crate in your dependency tree.)
- "jfif" file extension for JPEG images is now recognized

### Version 0.25.4

Features:
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.25.4"
version = "0.25.5"
edition = "2021"
resolver = "2"

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ image format encoders and decoders.

| Format | Decoding | Encoding |
| -------- | ----------------------------------------- | --------------------------------------- |
| AVIF | Yes (8-bit only) \* | Yes (lossy only) |
| AVIF | Yes \* | Yes (lossy only) |
| BMP | Yes | Yes |
| DDS | Yes | --- |
| DDS | Yes | --- |
| Farbfeld | Yes | Yes |
| GIF | Yes | Yes |
| HDR | Yes | Yes |
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ pub mod flat;
///
/// | Format | Decoding | Encoding |
/// | -------- | ----------------------------------------- | --------------------------------------- |
/// | AVIF | Yes (8-bit only) \* | Yes (lossy only) |
/// | AVIF | Yes \* | Yes (lossy only) |
/// | BMP | Yes | Yes |
/// | DDS | Yes | --- |
/// | Farbfeld | Yes | Yes |
Expand Down
Loading