Skip to content

Commit c708281

Browse files
committed
Release notes and metadata for 0.25.2
1 parent 59358a6 commit c708281

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

CHANGES.md

+21
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@
77

88
## Changes
99

10+
### Version 0.25.2
11+
12+
Features:
13+
- Added the HDR encoder to supported formats in generic write methods with the
14+
`hdr` feature enabled. Supports 32-bit float RGB color only, for now.
15+
- When cloning `ImageBuffer`, `DynamicImage` and `Frame` the existing buffer
16+
will now be reused if possible.
17+
- Added `image::ImageReader` as an alias.
18+
- Implement `ImageEncoder` for `HdrEncoder`.
19+
20+
Structural changes
21+
- Switch from `byteorder` to `byteorder-lite`, consolidating some casting
22+
unsafety to `bytemuck`.
23+
- Many methods on `DynamicImage` and buffers gained `#[must_use]` indications.
24+
25+
Bug fixes:
26+
- Removed test data included in the crate archive.
27+
- The WebP animation decoder stops when reaching the indicate frame count.
28+
- Fixed bugs in the `bmp` decoder.
29+
- Format support gated on the `exr` feature now compiles in isolation.
30+
1031
### Version 0.25.1
1132

1233
Bug fixes:

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.1"
3+
version = "0.25.2"
44
edition = "2021"
55
resolver = "2"
66

0 commit comments

Comments
 (0)