diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d968f76..5f578154 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## Unreleased + +## v0.1.17 (2019-12-08) +- Minimum supported rust version changed to 1.34 +- Fix clippy::into_iter_on_array warning +- Ignore extraneous bytes after SOS +- Support IDCT Scaling + ## v0.1.16 (2019-08-25) - Minimum supported rust version changed to 1.28 - Allow zero length DHT segments diff --git a/Cargo.toml b/Cargo.toml index 045b0f79..06f92278 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jpeg-decoder" -version = "0.1.16" +version = "0.1.17" authors = ["Ulf Nilsson "] description = "JPEG decoder" documentation = "https://docs.rs/jpeg-decoder"