diff --git a/CHANGES.md b/CHANGES.md index cc6139f80a..9b7ee07739 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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: diff --git a/Cargo.toml b/Cargo.toml index 1f5fd27563..aa88c9ea0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "image" -version = "0.25.4" +version = "0.25.5" edition = "2021" resolver = "2" diff --git a/README.md b/README.md index e3eb168058..c57ac92b39 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/src/lib.rs b/src/lib.rs index 1266c2f070..144dcc4d39 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -213,7 +213,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 |