Skip to content

Commit

Permalink
jxl-oxide: v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tirr-c committed Jul 30, 2024
1 parent 22012b2 commit ece447f
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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.8.1] - 2024-07-30

### Fixed
- `jxl-modular`: Fix incorrect color with complex inverse palette (#312).
Expand Down Expand Up @@ -113,7 +113,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.8.0...HEAD
[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
[0.7.2]: https://github.com/tirr-c/jxl-oxide/releases/tag/0.7.2
[0.7.1]: https://github.com/tirr-c/jxl-oxide/releases/tag/0.7.1
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 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.7.0"
version = "0.7.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.7.0"
version = "0.7.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.8.0"
version = "0.8.1"
edition = "2021"

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

[dependencies.jxl-oxide]
version = "0.8.0"
version = "0.8.1"
path = "../jxl-oxide"
default-features = false
features = ["lcms2"]
Expand Down
4 changes: 2 additions & 2 deletions crates/jxl-oxide-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ categories = ["multimedia::images"]
license = "MIT OR Apache-2.0"
publish = false

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

[lib]
Expand All @@ -29,7 +29,7 @@ version = "1.0.0"
optional = true

[dependencies.jxl-oxide]
version = "0.8.0"
version = "0.8.1"
path = "../jxl-oxide"
default-features = false

Expand Down
6 changes: 3 additions & 3 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.8.0"
version = "0.8.1"
edition = "2021"

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

[dependencies.jxl-color]
version = "0.7.0"
version = "0.7.1"
path = "../jxl-color"

[dependencies.jxl-frame]
Expand All @@ -37,7 +37,7 @@ version = "0.9.0"
path = "../jxl-image"

[dependencies.jxl-render]
version = "0.8.0"
version = "0.8.2"
path = "../jxl-render"

[dependencies.jxl-threadpool]
Expand Down
6 changes: 3 additions & 3 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.8.1"
version = "0.8.2"
edition = "2021"

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

[dependencies.jxl-color]
version = "0.7.0"
version = "0.7.1"
path = "../jxl-color"

[dependencies.jxl-frame]
Expand All @@ -39,7 +39,7 @@ version = "0.9.0"
path = "../jxl-image"

[dependencies.jxl-modular]
version = "0.7.0"
version = "0.7.1"
path = "../jxl-modular"

[dependencies.jxl-threadpool]
Expand Down

0 comments on commit ece447f

Please sign in to comment.