Skip to content

Commit

Permalink
Merge pull request #2378 from Shnatsel/chainjlog
Browse files Browse the repository at this point in the history
Release 0.25.5 with 10-bit AVIF and bugfixes
  • Loading branch information
Shnatsel authored Nov 5, 2024
2 parents a35ec47 + 6378e0b commit 317bc16
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
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 @@ -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 |
Expand Down

0 comments on commit 317bc16

Please sign in to comment.