Skip to content

Commit

Permalink
Bump versions (#270)
Browse files Browse the repository at this point in the history
* Bump versions

* Update CHANGELOG.md
  • Loading branch information
tirr-c committed Mar 4, 2024
1 parent 18af5ce commit a806333
Show file tree
Hide file tree
Showing 12 changed files with 41 additions and 35 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.2] - 2024-03-03

### Added
- `jxl-oxide-cli`: Add decode argument `--lz77-mode` (#272).

### Fixed
- `jxl-modular`: Include meta channels when computing LZ77 `dist_multiplier` (#269).
- `jxl-modular`: Support "legacy" method of computing LZ77 `dist_multiplier` (#269, #271).

## [0.7.1] - 2024-02-29

Expand Down Expand Up @@ -91,7 +96,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.7.1...HEAD
[Unreleased]: https://github.com/tirr-c/jxl-oxide/compare/0.7.2...HEAD
[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
[0.7.0]: https://github.com/tirr-c/jxl-oxide/releases/tag/0.7.0
[0.6.0]: https://github.com/tirr-c/jxl-oxide/releases/tag/0.6.0
Expand Down
16 changes: 8 additions & 8 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.7.1"
jxl-oxide = "0.7.2"
```

---
Expand Down
2 changes: 1 addition & 1 deletion crates/jxl-bitstream/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.3.2"
version = "0.3.3"
edition = "2021"

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions crates/jxl-frame/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ 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]
tracing.workspace = true

[dependencies.jxl-bitstream]
version = "0.3.2"
version = "0.3.3"
path = "../jxl-bitstream"

[dependencies.jxl-coding]
Expand All @@ -31,7 +31,7 @@ version = "0.8.1"
path = "../jxl-image"

[dependencies.jxl-modular]
version = "0.6.1"
version = "0.6.2"
path = "../jxl-modular"

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

version = "0.6.1"
version = "0.6.2"
edition = "2021"

[dependencies]
tracing.workspace = true

[dependencies.jxl-bitstream]
version = "0.3.2"
version = "0.3.3"
path = "../jxl-bitstream"

[dependencies.jxl-coding]
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.7.1"
version = "0.7.2"
edition = "2021"

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

[dependencies.jxl-oxide]
version = "0.7.1"
version = "0.7.2"
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.7.1"
version = "0.7.2"
edition = "2021"

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

[dependencies.jxl-oxide]
version = "0.7.1"
version = "0.7.2"
path = "../jxl-oxide"
default-features = false

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.7.1"
version = "0.7.2"
edition = "2021"

exclude = ["tests/"]
Expand All @@ -17,15 +17,15 @@ exclude = ["tests/"]
tracing.workspace = true

[dependencies.jxl-bitstream]
version = "0.3.2"
version = "0.3.3"
path = "../jxl-bitstream"

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

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

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

[dependencies.jxl-render]
version = "0.7.1"
version = "0.7.2"
path = "../jxl-render"

[dependencies.jxl-threadpool]
Expand Down
4 changes: 2 additions & 2 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.7.1"
version = "0.7.2"
edition = "2021"

[dependencies]
Expand Down Expand Up @@ -39,7 +39,7 @@ version = "0.8.1"
path = "../jxl-image"

[dependencies.jxl-modular]
version = "0.6.1"
version = "0.6.2"
path = "../jxl-modular"

[dependencies.jxl-threadpool]
Expand Down
4 changes: 2 additions & 2 deletions crates/jxl-vardct/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.6.1"
version = "0.6.2"
edition = "2021"

[dependencies]
Expand All @@ -27,7 +27,7 @@ version = "0.4.1"
path = "../jxl-grid"

[dependencies.jxl-modular]
version = "0.6.1"
version = "0.6.2"
path = "../jxl-modular"

[dependencies.jxl-threadpool]
Expand Down
12 changes: 6 additions & 6 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 a806333

Please sign in to comment.