Skip to content

Commit

Permalink
jxl-oxide v0.9.1 (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
tirr-c authored Oct 12, 2024
1 parent 3761ddc commit 7156be5
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 27 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.9.1] - 2024-10-12

### Fixed
- `jxl-color`: Fix generated `mluc` tag in ICC profile (#347).
- `jxl-oxide`: Fix panic while decoding fully loaded intermediate frame (#345).

## [0.9.0] - 2024-09-10

Expand Down Expand Up @@ -134,7 +135,7 @@ 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.9.0...HEAD
[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
[0.8.1]: https://github.com/tirr-c/jxl-oxide/releases/tag/0.8.1
[0.8.0]: https://github.com/tirr-c/jxl-oxide/releases/tag/0.8.0
Expand Down
12 changes: 6 additions & 6 deletions 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ which covers various components of jxl-oxide.

```toml
[dependencies]
jxl-oxide = "0.9.0"
jxl-oxide = "0.9.1"
```

---
Expand Down
2 changes: 1 addition & 1 deletion crates/jxl-color/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["jpeg-xl", "decoder", "jxl-oxide"]
categories = ["multimedia::images"]
license = "MIT OR Apache-2.0"

version = "0.8.0"
version = "0.8.1"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/jxl-grid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["jpeg-xl", "decoder", "jxl-oxide"]
categories = ["multimedia::images"]
license = "MIT OR Apache-2.0"

version = "0.5.0"
version = "0.5.1"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/jxl-modular/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["jpeg-xl", "decoder", "jxl-oxide"]
categories = ["multimedia::images"]
license = "MIT OR Apache-2.0"

version = "0.8.0"
version = "0.8.1"
edition = "2021"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/jxl-oxide-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["jpeg-xl", "decoder", "jxl-oxide"]
categories = ["multimedia::images"]
license = "MIT OR Apache-2.0"

version = "0.9.0"
version = "0.9.1"
edition = "2021"

default-run = "jxl-oxide"
Expand All @@ -24,7 +24,7 @@ version = "4.5.1"
features = ["derive"]

[dependencies.jxl-oxide]
version = "0.9.0"
version = "0.9.1"
path = "../jxl-oxide"
default-features = false
features = ["lcms2"]
Expand Down
8 changes: 4 additions & 4 deletions crates/jxl-oxide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["jpeg-xl", "decoder", "jxl-oxide"]
categories = ["multimedia::images"]
license = "MIT OR Apache-2.0"

version = "0.9.0"
version = "0.9.1"
edition = "2021"

exclude = ["tests/"]
Expand All @@ -21,23 +21,23 @@ version = "0.4.1"
path = "../jxl-bitstream"

[dependencies.jxl-color]
version = "0.8.0"
version = "0.8.1"
path = "../jxl-color"

[dependencies.jxl-frame]
version = "0.10.0"
path = "../jxl-frame"

[dependencies.jxl-grid]
version = "0.5.0"
version = "0.5.1"
path = "../jxl-grid"

[dependencies.jxl-image]
version = "0.10.0"
path = "../jxl-image"

[dependencies.jxl-render]
version = "0.9.0"
version = "0.9.1"
path = "../jxl-render"

[dependencies.jxl-threadpool]
Expand Down
8 changes: 4 additions & 4 deletions crates/jxl-render/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["jpeg-xl", "decoder", "jxl-oxide"]
categories = ["multimedia::images"]
license = "MIT OR Apache-2.0"

version = "0.9.0"
version = "0.9.1"
edition = "2021"

[dependencies]
Expand All @@ -23,23 +23,23 @@ version = "0.4.1"
path = "../jxl-coding"

[dependencies.jxl-color]
version = "0.8.0"
version = "0.8.1"
path = "../jxl-color"

[dependencies.jxl-frame]
version = "0.10.0"
path = "../jxl-frame"

[dependencies.jxl-grid]
version = "0.5.0"
version = "0.5.1"
path = "../jxl-grid"

[dependencies.jxl-image]
version = "0.10.0"
path = "../jxl-image"

[dependencies.jxl-modular]
version = "0.8.0"
version = "0.8.1"
path = "../jxl-modular"

[dependencies.jxl-threadpool]
Expand Down
10 changes: 5 additions & 5 deletions fuzz/Cargo.lock

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

0 comments on commit 7156be5

Please sign in to comment.