diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index b040ca9d..f7c39cb8 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -28,7 +28,8 @@ body: label: Library Version description: Specify the version of the library where you encountered the issue options: - - 0.10.2 (latest) + - 0.10.3 (latest) + - 0.10.2 - 0.10.1 - 0.10.0 - 0.9.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index c68e7ca9..1333b1ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,13 @@ All notable changes to the Rimage library will be documented in this file. -## v0.10.2 +## v0.10.3 + +### Changes + +- Added support for all image formats that supported by `image` crate + +## [v0.10.2](https://github.com/SalOne22/rimage/releases/tag/v0.10.2) ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 6e119c04..e0ebdcbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1276,7 +1276,7 @@ dependencies = [ [[package]] name = "rimage" -version = "0.10.2" +version = "0.10.3" dependencies = [ "clap", "glob", diff --git a/Cargo.toml b/Cargo.toml index aa0d16ef..8eb85d9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0" name = "rimage" readme = "README.md" repository = "https://github.com/SalOne22/rimage" -version = "0.10.2" +version = "0.10.3" edition = "2021" [[bin]] diff --git a/README.md b/README.md index fc83a09f..e79e2d58 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ Or add this to your `Cargo.toml`: ```toml [dependencies] -rimage = "0.10.2" +rimage = "0.10.3" ``` ## Library Usage