From bb0d8a9fff06a6cb56ae3998ad6b36f5e0bb71f8 Mon Sep 17 00:00:00 2001 From: Vladyslav Vladinov Date: Mon, 2 Sep 2024 23:26:19 +0200 Subject: [PATCH] chore: :bookmark: bump version to v0.11.0-next.3 --- CHANGELOG.md | 20 +++++++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- config.toml | 2 +- 5 files changed, 23 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9b27a4..b357aaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,25 @@ All notable changes to the Rimage library will be documented in this file. -## v0.11.0-next.2 +## v0.11.0-next.3 + +### Bug Fixes + +- **cli:** :ambulance: convert all input images to rgba8 ([c980e9a](https://github.com/SalOne22/rimage/commit/c980e9a32ab48755c10e57fb5caed8e33673afd9)) +- **cli:** :bug: fixed incorect handling of file names with dots ([1f3275c](https://github.com/SalOne22/rimage/commit/1f3275c9fb70d9affeb1ca5dfa05c2f5b799792d)) +- **cli:** :bug: fixed null error on avif decoding ([59b6759](https://github.com/SalOne22/rimage/commit/59b6759c541f0b8cf9053292f99a771e352d8614)) +- error if input width or height is 0 ([b626fdc](https://github.com/SalOne22/rimage/commit/b626fdca77c6877254dde4148b27644a09c0d7ed)) +- **cli:** :bug: ensure max length calculation returns 0 instead of panicking when no outputs are present ([3d0a3a3](https://github.com/SalOne22/rimage/commit/3d0a3a388544d2f290544a60846f5842bc81b222)) +- **cli:** :bug: fixed handling of float32 images ([66c3648](https://github.com/SalOne22/rimage/commit/66c3648145a78254b325457fbdfd53f5401feb17)) +- **cli:** :bug: improved resize value parsing by trimming input and refining error handling for invalid formats ([2a43c26](https://github.com/SalOne22/rimage/commit/2a43c2694bc019eea709e4aa41f1c01e025c39db)) +- **cli:** :bug: updated parsing logic for width and height to reduce number of edge cases ([9bd3ea2](https://github.com/SalOne22/rimage/commit/9bd3ea23eb2eadf0e280095be5bde1a6d6a2182f)) +- **operations:** :bug: updated apply icc profile operation to work in threads ([b5dee09](https://github.com/SalOne22/rimage/commit/b5dee099a02e1b75fdd2724d10c6b4375b460694)) + +### Features + +- **cli:** :sparkles: update resize value format for width and height to use 'w' and 'h' suffixes instead of 'x\_' and '\_x' ([693ea46](https://github.com/SalOne22/rimage/commit/693ea46c93f94e4fc051e5f0a227899bafbcae84)) + +## [v0.11.0-next.2](https://github.com/SalOne22/rimage/releases/tag/v0.11.0-next.2) ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index c7e2aac..94a07a9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1297,7 +1297,7 @@ dependencies = [ [[package]] name = "rimage" -version = "0.11.0-next.2" +version = "0.11.0-next.3" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 49925eb..5cadbc0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rimage" -version = "0.11.0-next.2" +version = "0.11.0-next.3" edition = "2021" description = "Optimize images natively with best-in-class codecs" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 9c15ba7..77e6661 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A powerful Rust image optimization CLI tool inspired by [squoosh!](https://squoosh.app/). -:warning: WARNING: This documentation works only for latest version of rimage! You can get latest version from [releases](https://github.com/SalOne22/rimage/releases) tab or explicitly with cargo: `cargo install rimage@0.11.0-next.2` +:warning: WARNING: This documentation works only for latest version of rimage! You can get latest version from [releases](https://github.com/SalOne22/rimage/releases) tab or explicitly with cargo: `cargo install rimage@0.11.0-next.3` ## Features diff --git a/config.toml b/config.toml index 72882b6..32b7427 100644 --- a/config.toml +++ b/config.toml @@ -1,3 +1,3 @@ [env] # Because rust doesn't support it in cargo.toml => package.version, so it has to be define here to avoid any accident -CARGO_PKG_VERSION_PRE = { value = "2", force = true, relative = true } \ No newline at end of file +CARGO_PKG_VERSION_PRE = { value = "3", force = true, relative = true } \ No newline at end of file