Skip to content

Commit 6b0a530

Browse files
committed
chore: bump version to 25.2.26 (#2404)
1 parent 950750f commit 6b0a530

File tree

17 files changed

+121
-119
lines changed

17 files changed

+121
-119
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ansi-to-tui = "7.0.0"
1818
anyhow = "1.0.96"
1919
base64 = "0.22.1"
2020
bitflags = "2.8.0"
21-
clap = { version = "4.5.30", features = [ "derive" ] }
21+
clap = { version = "4.5.31", features = [ "derive" ] }
2222
core-foundation-sys = "0.8.7"
2323
crossterm = { version = "0.28.1", features = [ "event-stream" ] }
2424
dirs = "6.0.0"

yazi-adapter/Cargo.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-adapter"
3-
version = "25.2.11"
3+
version = "25.2.26"
44
edition = "2021"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,25 +9,24 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-config = { path = "../yazi-config", version = "25.2.11" }
13-
yazi-macro = { path = "../yazi-macro", version = "25.2.11" }
14-
yazi-shared = { path = "../yazi-shared", version = "25.2.11" }
12+
yazi-config = { path = "../yazi-config", version = "25.2.26" }
13+
yazi-macro = { path = "../yazi-macro", version = "25.2.26" }
14+
yazi-shared = { path = "../yazi-shared", version = "25.2.26" }
1515

1616
# External dependencies
1717
ansi-to-tui = { workspace = true }
1818
anyhow = { workspace = true }
1919
base64 = { workspace = true }
2020
color_quant = "1.1.0"
2121
crossterm = { workspace = true }
22-
futures = { workspace = true }
2322
image = { version = "0.25.5", default-features = false, features = [ "avif", "bmp", "dds", "exr", "ff", "gif", "hdr", "ico", "jpeg", "png", "pnm", "qoi", "tga", "webp" ] }
2423
ratatui = { workspace = true }
2524
scopeguard = { workspace = true }
2625
tokio = { workspace = true }
2726
tracing = { workspace = true }
2827

2928
[target."cfg(unix)".dependencies]
30-
libc = { workspace = true }
29+
libc = { workspace = true }
3130

3231
[target.'cfg(windows)'.dependencies]
3332
windows-sys = { version = "0.59.0", features = [ "Win32_UI_Shell" ] }

yazi-boot/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-boot"
3-
version = "25.2.11"
3+
version = "25.2.26"
44
edition = "2021"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,11 +9,11 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-adapter = { path = "../yazi-adapter", version = "25.2.11" }
13-
yazi-config = { path = "../yazi-config", version = "25.2.11" }
14-
yazi-fs = { path = "../yazi-fs", version = "25.2.11" }
15-
yazi-macro = { path = "../yazi-macro", version = "25.2.11" }
16-
yazi-shared = { path = "../yazi-shared", version = "25.2.11" }
12+
yazi-adapter = { path = "../yazi-adapter", version = "25.2.26" }
13+
yazi-config = { path = "../yazi-config", version = "25.2.26" }
14+
yazi-fs = { path = "../yazi-fs", version = "25.2.26" }
15+
yazi-macro = { path = "../yazi-macro", version = "25.2.26" }
16+
yazi-shared = { path = "../yazi-shared", version = "25.2.26" }
1717

1818
# External dependencies
1919
clap = { workspace = true }
@@ -22,7 +22,7 @@ serde = { workspace = true }
2222

2323
[build-dependencies]
2424
clap = { workspace = true }
25-
clap_complete = "4.5.45"
25+
clap_complete = "4.5.46"
2626
clap_complete_fig = "4.5.2"
2727
clap_complete_nushell = "4.5.5"
2828
vergen-gitcl = { version = "1.0.5", features = [ "build", "rustc" ] }

yazi-cli/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-cli"
3-
version = "25.2.11"
3+
version = "25.2.26"
44
edition = "2021"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,11 +9,11 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-boot = { path = "../yazi-boot", version = "25.2.11" }
13-
yazi-dds = { path = "../yazi-dds", version = "25.2.11" }
14-
yazi-fs = { path = "../yazi-fs", version = "25.2.11" }
15-
yazi-macro = { path = "../yazi-macro", version = "25.2.11" }
16-
yazi-shared = { path = "../yazi-shared", version = "25.2.11" }
12+
yazi-boot = { path = "../yazi-boot", version = "25.2.26" }
13+
yazi-dds = { path = "../yazi-dds", version = "25.2.26" }
14+
yazi-fs = { path = "../yazi-fs", version = "25.2.26" }
15+
yazi-macro = { path = "../yazi-macro", version = "25.2.26" }
16+
yazi-shared = { path = "../yazi-shared", version = "25.2.26" }
1717

1818
# External dependencies
1919
anyhow = { workspace = true }
@@ -26,12 +26,12 @@ toml = { workspace = true }
2626
twox-hash = { workspace = true }
2727

2828
[build-dependencies]
29-
yazi-shared = { path = "../yazi-shared", version = "25.2.11" }
29+
yazi-shared = { path = "../yazi-shared", version = "25.2.26" }
3030

3131
# External build dependencies
3232
anyhow = { workspace = true }
3333
clap = { workspace = true }
34-
clap_complete = "4.5.45"
34+
clap_complete = "4.5.46"
3535
clap_complete_fig = "4.5.2"
3636
clap_complete_nushell = "4.5.5"
3737
serde_json = { workspace = true }

yazi-codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-codegen"
3-
version = "25.2.11"
3+
version = "25.2.26"
44
edition = "2021"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]

yazi-config/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-config"
3-
version = "25.2.11"
3+
version = "25.2.26"
44
edition = "2021"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,9 +9,9 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-fs = { path = "../yazi-fs", version = "25.2.11" }
13-
yazi-macro = { path = "../yazi-macro", version = "25.2.11" }
14-
yazi-shared = { path = "../yazi-shared", version = "25.2.11" }
12+
yazi-fs = { path = "../yazi-fs", version = "25.2.26" }
13+
yazi-macro = { path = "../yazi-macro", version = "25.2.26" }
14+
yazi-shared = { path = "../yazi-shared", version = "25.2.26" }
1515

1616
# External dependencies
1717
anyhow = { workspace = true }

0 commit comments

Comments
 (0)