diff --git a/CHANGELOG.md b/CHANGELOG.md index f2f65c4e..ba99c9f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.1] - 2024-11-10 + ### Changed - `jxl-oxide`: Enable `image` feature in Docs.rs (#382). @@ -153,7 +155,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - This is the first official release of jxl-oxide, a JPEG XL decoder written in Rust. - Frequently used features are mostly implemented. -[Unreleased]: https://github.com/tirr-c/jxl-oxide/compare/0.10.0...HEAD +[Unreleased]: https://github.com/tirr-c/jxl-oxide/compare/0.10.1...HEAD +[0.10.1]: https://github.com/tirr-c/jxl-oxide/releases/tag/0.10.1 [0.10.0]: https://github.com/tirr-c/jxl-oxide/releases/tag/0.10.0 [0.9.1]: https://github.com/tirr-c/jxl-oxide/releases/tag/0.9.1 [0.9.0]: https://github.com/tirr-c/jxl-oxide/releases/tag/0.9.0 diff --git a/Cargo.lock b/Cargo.lock index 1f88c7b1..b8fa3de7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -831,7 +831,7 @@ dependencies = [ [[package]] name = "jxl-oxide" -version = "0.10.0" +version = "0.11.0" dependencies = [ "bytemuck", "image", @@ -849,7 +849,7 @@ dependencies = [ [[package]] name = "jxl-oxide-cli" -version = "0.10.0" +version = "0.11.0" dependencies = [ "clap", "jxl-color", @@ -895,7 +895,7 @@ dependencies = [ [[package]] name = "jxl-oxide-wasm" -version = "0.10.0" +version = "0.11.0" dependencies = [ "console_error_panic_hook", "console_log", diff --git a/README.md b/README.md index 7249a05d..8e9246ac 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ which covers various components of jxl-oxide. ```toml [dependencies] -jxl-oxide = "0.10.0" +jxl-oxide = "0.10.1" ``` ## Installing command line tool diff --git a/crates/jxl-oxide-cli/Cargo.toml b/crates/jxl-oxide-cli/Cargo.toml index c272e0f4..cf1c1fd8 100644 --- a/crates/jxl-oxide-cli/Cargo.toml +++ b/crates/jxl-oxide-cli/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["jpeg-xl", "decoder", "jxl-oxide"] categories = ["multimedia::images"] license = "MIT OR Apache-2.0" -version = "0.10.0" +version = "0.11.0" edition = "2021" default-run = "jxl-oxide" @@ -29,7 +29,7 @@ path = "../jxl-color" optional = true [dependencies.jxl-oxide] -version = "0.10.0" +version = "0.11.0" path = "../jxl-oxide" default-features = false features = ["lcms2"] diff --git a/crates/jxl-oxide-tests/Cargo.toml b/crates/jxl-oxide-tests/Cargo.toml index ee7ae091..e432df9c 100644 --- a/crates/jxl-oxide-tests/Cargo.toml +++ b/crates/jxl-oxide-tests/Cargo.toml @@ -21,7 +21,7 @@ default-features = false optional = true [dependencies.jxl-oxide] -version = "0.10.0" +version = "0.11.0" path = "../jxl-oxide" default-features = false features = ["lcms2"] diff --git a/crates/jxl-oxide-wasm/Cargo.toml b/crates/jxl-oxide-wasm/Cargo.toml index b3d350c9..0a044db1 100644 --- a/crates/jxl-oxide-wasm/Cargo.toml +++ b/crates/jxl-oxide-wasm/Cargo.toml @@ -9,7 +9,7 @@ categories = ["multimedia::images"] license = "MIT OR Apache-2.0" publish = false -version = "0.10.0" +version = "0.11.0" edition = "2021" [lib] @@ -29,7 +29,7 @@ version = "1.0.0" optional = true [dependencies.jxl-oxide] -version = "0.10.0" +version = "0.11.0" path = "../jxl-oxide" default-features = false diff --git a/crates/jxl-oxide/Cargo.toml b/crates/jxl-oxide/Cargo.toml index 2abccd66..ec6a8f2f 100644 --- a/crates/jxl-oxide/Cargo.toml +++ b/crates/jxl-oxide/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["jpeg-xl", "decoder", "jxl-oxide"] categories = ["multimedia::images"] license = "MIT OR Apache-2.0" -version = "0.10.0" +version = "0.11.0" edition = "2021" [dependencies] diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index f45adc8d..ebf4bcf6 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -102,7 +102,7 @@ dependencies = [ [[package]] name = "jxl-oxide" -version = "0.10.0" +version = "0.11.0" dependencies = [ "jxl-bitstream", "jxl-color",