Skip to content

Commit

Permalink
chore: 🔖 bump version to v0.11.0-next.3
Browse files Browse the repository at this point in the history
  • Loading branch information
SalOne22 committed Sep 2, 2024
1 parent 9bdfeea commit bb0d8a9
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 5 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
@@ -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 }
CARGO_PKG_VERSION_PRE = { value = "3", force = true, relative = true }

0 comments on commit bb0d8a9

Please sign in to comment.