Skip to content

Commit a5ae7dc

Browse files
committed
Bump version to 0.3.0
1 parent 3619cd9 commit a5ae7dc

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jxl/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jxl"
33
description = "High performance Rust implementation of a JPEG XL decoder"
4-
version = "0.2.2"
4+
version = "0.3.0"
55
readme = "../README.md"
66
keywords = ["jpeg-xl", "decoder"]
77
categories = ["multimedia::images"]
@@ -13,23 +13,23 @@ license = "BSD-3-Clause"
1313
exclude = ["resources/"]
1414

1515
[dependencies]
16-
jxl_transforms = { path = "../jxl_transforms", version = "0.2.2" }
16+
jxl_transforms = { path = "../jxl_transforms", version = "0.3.0" }
1717
thiserror = "2.0"
1818
byteorder = "1.4.3"
1919
num-derive = "0.4"
2020
num-traits = "0.2.14"
2121
array-init = "2.0.0"
2222
tracing = { version = "0.1.40", optional = true }
23-
jxl_macros = { path = "../jxl_macros", version = "=0.2.2" }
24-
jxl_simd = { path = "../jxl_simd", version = "=0.2.2" }
23+
jxl_macros = { path = "../jxl_macros", version = "=0.3.0" }
24+
jxl_simd = { path = "../jxl_simd", version = "=0.3.0" }
2525

2626
[dev-dependencies]
2727
arbtest = "0.3.2"
2828
paste = "1.0.15"
2929
rand = "0.9.2"
3030
rand_xorshift = "0.4.0"
3131
test-log = { version = "0.2.16", features = ["trace"] }
32-
jxl_macros = { path = "../jxl_macros", version = "=0.2.2", features = ["test"] }
32+
jxl_macros = { path = "../jxl_macros", version = "=0.3.0", features = ["test"] }
3333

3434
[features]
3535
all-simd = ["jxl_simd/all-simd"]

jxl_cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "jxl_cli"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
edition = "2024"
55
license = "BSD-3-Clause"
66
default-run = "jxl_cli"
77

88
[dependencies]
9-
jxl = { path = "../jxl", version = "=0.2.2" }
9+
jxl = { path = "../jxl", version = "=0.3.0" }
1010
clap = { version = "4.5.18", features = ["derive"] }
1111
tracing-subscriber = { version = "0.3.18", features = [
1212
"env-filter",
@@ -19,7 +19,7 @@ exr = { version = "1.73.0", optional = true }
1919
color-eyre = "0.6.5"
2020

2121
[dev-dependencies]
22-
jxl_macros = { path = "../jxl_macros", features = ["test"], version = "=0.2.2" }
22+
jxl_macros = { path = "../jxl_macros", features = ["test"], version = "=0.3.0" }
2323
criterion = { version = "0.7.0", features = ["html_reports"] }
2424

2525
[features]

jxl_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jxl_macros"
33
description = "High performance Rust implementation of a JPEG XL decoder - supporting macros"
4-
version = "0.2.2"
4+
version = "0.3.0"
55
readme = "../README.md"
66
keywords = ["jpeg-xl", "decoder"]
77
categories = ["multimedia::images"]

jxl_simd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jxl_simd"
33
description = "High performance Rust implementation of a JPEG XL decoder - SIMD support code"
4-
version = "0.2.2"
4+
version = "0.3.0"
55
readme = "../README.md"
66
keywords = ["jpeg-xl", "simd"]
77
categories = ["multimedia::images"]

jxl_transforms/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "jxl_transforms"
33
description = "High performance Rust implementation of a JPEG XL decoder - Transforms"
4-
version = "0.2.2"
4+
version = "0.3.0"
55
readme = "../README.md"
66
keywords = ["jpeg-xl", "simd", "dct"]
77
categories = ["multimedia::images"]
@@ -11,7 +11,7 @@ edition = "2021"
1111
license = "BSD-3-Clause"
1212

1313
[dependencies]
14-
jxl_simd = { path = "../jxl_simd", version = "=0.2.2" }
14+
jxl_simd = { path = "../jxl_simd", version = "=0.3.0" }
1515

1616
[dev-dependencies]
1717
criterion = { version = "0.7.0", features = ["html_reports"] }

0 commit comments

Comments
 (0)