diff --git a/CHANGES.md b/CHANGES.md index 354ad7aec6..235d80c1e6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -19,6 +19,15 @@ Rust image aims to be a pure-Rust implementation of various popular image format See ongoing work on [`image-canvas`](https://github.com/image-rs/canvas) if you want to participate. +### Version 0.24.3 + +New Features: +- `TiffDecoder` now supports setting resource limits. + +Bug fixes: +- Fix compile issues on little endian systems. +- Various panics discovered by fuzzing. + ### Version 0.24.2 Structural changes: diff --git a/Cargo.toml b/Cargo.toml index 3ef115e73d..fba8418293 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "image" -version = "0.24.2" +version = "0.24.3" edition = "2018" rust-version = "1.56" resolver = "2"