Skip to content

Commit 317bc16

Browse files
authored
Merge pull request #2378 from Shnatsel/chainjlog
Release 0.25.5 with 10-bit AVIF and bugfixes
2 parents a35ec47 + 6378e0b commit 317bc16

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGES.md

+11
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@
66

77
## Changes
88

9+
### Version 0.25.5
10+
11+
Features:
12+
- Added support for decoding 10-bit and 12-bit AVIF
13+
- Initial, opt-in serde support for an enum. This may be extended to other types in the future.
14+
15+
Bug fixes:
16+
- [Multiple bug fixes in AVIF decoding](https://github.com/image-rs/image/pull/2373)
17+
- 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.)
18+
- "jfif" file extension for JPEG images is now recognized
19+
920
### Version 0.25.4
1021

1122
Features:

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "image"
3-
version = "0.25.4"
3+
version = "0.25.5"
44
edition = "2021"
55
resolver = "2"
66

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ image format encoders and decoders.
4444

4545
| Format | Decoding | Encoding |
4646
| -------- | ----------------------------------------- | --------------------------------------- |
47-
| AVIF | Yes (8-bit only) \* | Yes (lossy only) |
47+
| AVIF | Yes \* | Yes (lossy only) |
4848
| BMP | Yes | Yes |
49-
| DDS | Yes | --- |
49+
| DDS | Yes | --- |
5050
| Farbfeld | Yes | Yes |
5151
| GIF | Yes | Yes |
5252
| HDR | Yes | Yes |

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ pub mod flat;
213213
///
214214
/// | Format | Decoding | Encoding |
215215
/// | -------- | ----------------------------------------- | --------------------------------------- |
216-
/// | AVIF | Yes (8-bit only) \* | Yes (lossy only) |
216+
/// | AVIF | Yes \* | Yes (lossy only) |
217217
/// | BMP | Yes | Yes |
218218
/// | DDS | Yes | --- |
219219
/// | Farbfeld | Yes | Yes |

0 commit comments

Comments
 (0)