diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index dc2802b9..76f96846 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,7 +1,7 @@ name: Bug report description: Create a report to help us improve -title: '[Bug]: ' -labels: ['bug'] +title: "[Bug]: <title>" +labels: ["bug"] body: - type: checkboxes attributes: @@ -28,7 +28,8 @@ body: label: Library Version description: Specify the version of the library where you encountered the issue options: - - 0.9.1 (latest) + - 0.10.0 (latest) + - 0.9.1 - 0.9.0 - 0.8.2 - 0.8.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 656882d4..ebf3c444 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,28 @@ All notable changes to the Rimage library will be documented in this file. +## v0.10.0 + +### Breaking Changes + +- Replaced `image` module: Now re-exporting the [`image`](https://crates.io/crates/image) crate, which may affect existing functionalities. +- Refactored Decoder and Encoder: Changes in method signatures and behavior could potentially break existing code. + +### New features + +- Added support for musl targets +- Added support for wasm targets (emscripten and wasi) +- Added full support for all features on windows i686 (x86) and x86_64 targets + +### Changes + +- Changed codec for jxl compression. Shifted to support only lossless compression for improved efficiency and portability. +- Integration with image crate: Refactored Decoder and Encoder modules to utilize the image crate, enhancing functionality. + +### Additional Notes + +- Dependencies Update: Adjusted dependencies to align with new implementations and removed outdated ones. + ## [v0.9.1](https://github.com/SalOne22/rimage/releases/tag/v0.9.1) ### New features diff --git a/Cargo.lock b/Cargo.lock index 1cd6c6a5..03f41d85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1276,7 +1276,7 @@ dependencies = [ [[package]] name = "rimage" -version = "0.9.1" +version = "0.10.0" dependencies = [ "clap", "glob", diff --git a/Cargo.toml b/Cargo.toml index e622e673..2486bfc0 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.9.1" +version = "0.10.0" edition = "2021" [[bin]] diff --git a/README.md b/README.md index 386ee602..53bfa313 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ Or add this to your `Cargo.toml`: ```toml [dependencies] -rimage = "0.9.1" +rimage = "0.10.0" ``` ## Library Usage