Skip to content

Commit 2a79d33

Browse files
committed
Update meta data for 0.23.14
1 parent 150f890 commit 2a79d33

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,18 @@ Rust image aims to be a pure-Rust implementation of various popular image format
1010

1111
## Changes
1212

13+
### Version 0.23.14
14+
15+
- Unified gif blending in different decode methods, fixing out-of-bounds checks
16+
in a number of weirdly positioned frames.
17+
- Hardened TGA decoder against a number of malicious inputs.
18+
- Fix forward incompatible usage of the panic macro.
19+
- Fix load_rect for gif reaching `unreachable!()` code.
20+
21+
- Added `ExtendedColorType::A8`.
22+
- Allow TGA to load alpha-only images.
23+
- Optimized load_rect to avoid unnecessary seeks.
24+
1325
### Version 0.23.13
1426

1527
- Fix an inconsistency in supported formats of different methods for encoding

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "image"
3-
version = "0.23.13"
3+
version = "0.23.14"
44
edition = "2018"
55
license = "MIT"
66
description = "Imaging library written in Rust. Provides basic filters and decoders for the most common image formats."
@@ -27,7 +27,7 @@ num-iter = "0.1.32"
2727
num-rational = { version = "0.3", default-features = false }
2828
num-traits = "0.2.0"
2929
gif = { version = "0.11.1", optional = true }
30-
jpeg = { package = "jpeg-decoder", version = "0.1.17", default-features = false, optional = true }
30+
jpeg = { package = "jpeg-decoder", version = "0.1.22", default-features = false, optional = true }
3131
png = { version = "0.16.5", optional = true }
3232
scoped_threadpool = { version = "0.1", optional = true }
3333
tiff = { version = "0.6.0", optional = true }

0 commit comments

Comments
 (0)