Skip to content

Commit 5cb6e1f

Browse files
authored
chore: bump version to 25.5.28 (#2804)
1 parent 8a4d495 commit 5cb6e1f

File tree

20 files changed

+138
-138
lines changed

20 files changed

+138
-138
lines changed

Cargo.lock

Lines changed: 26 additions & 26 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
@@ -24,7 +24,7 @@ ansi-to-tui = "7.0.0"
2424
anyhow = "1.0.98"
2525
base64 = "0.22.1"
2626
bitflags = "2.9.1"
27-
clap = { version = "4.5.38", features = [ "derive" ] }
27+
clap = { version = "4.5.39", features = [ "derive" ] }
2828
core-foundation-sys = "0.8.7"
2929
crossterm = { version = "0.29.0", features = [ "event-stream" ] }
3030
dirs = "6.0.0"

yazi-adapter/Cargo.toml

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

1111
[dependencies]
12-
yazi-config = { path = "../yazi-config", version = "25.5.14" }
13-
yazi-macro = { path = "../yazi-macro", version = "25.5.14" }
14-
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
15-
yazi-term = { path = "../yazi-term", version = "25.5.14" }
12+
yazi-config = { path = "../yazi-config", version = "25.5.28" }
13+
yazi-macro = { path = "../yazi-macro", version = "25.5.28" }
14+
yazi-shared = { path = "../yazi-shared", version = "25.5.28" }
15+
yazi-term = { path = "../yazi-term", version = "25.5.28" }
1616

1717
# External dependencies
1818
ansi-to-tui = { workspace = true }

yazi-binding/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-binding"
3-
version = "25.5.14"
3+
version = "25.5.28"
44
edition = "2024"
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.5.14" }
13-
yazi-macro = { path = "../yazi-macro", version = "25.5.14" }
14-
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
12+
yazi-fs = { path = "../yazi-fs", version = "25.5.28" }
13+
yazi-macro = { path = "../yazi-macro", version = "25.5.28" }
14+
yazi-shared = { path = "../yazi-shared", version = "25.5.28" }
1515

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

yazi-boot/Cargo.toml

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

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

1818
# External dependencies
1919
clap = { workspace = true }
2020
regex = { workspace = true }
2121
serde = { workspace = true }
2222

2323
[build-dependencies]
24-
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
24+
yazi-shared = { path = "../yazi-shared", version = "25.5.28" }
2525

2626
# External dependencies
2727
clap = { workspace = true }
28-
clap_complete = "4.5.50"
28+
clap_complete = "4.5.51"
2929
clap_complete_fig = "4.5.2"
30-
clap_complete_nushell = "4.5.5"
30+
clap_complete_nushell = "4.5.6"
3131
vergen-gitcl = { version = "1.0.8", features = [ "build", "rustc" ] }

yazi-cli/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-cli"
3-
version = "25.5.14"
3+
version = "25.5.28"
44
edition = "2024"
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.5.14" }
13-
yazi-dds = { path = "../yazi-dds", version = "25.5.14" }
14-
yazi-fs = { path = "../yazi-fs", version = "25.5.14" }
15-
yazi-macro = { path = "../yazi-macro", version = "25.5.14" }
16-
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
12+
yazi-boot = { path = "../yazi-boot", version = "25.5.28" }
13+
yazi-dds = { path = "../yazi-dds", version = "25.5.28" }
14+
yazi-fs = { path = "../yazi-fs", version = "25.5.28" }
15+
yazi-macro = { path = "../yazi-macro", version = "25.5.28" }
16+
yazi-shared = { path = "../yazi-shared", version = "25.5.28" }
1717

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

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

3131
# External build dependencies
3232
anyhow = { workspace = true }
3333
clap = { workspace = true }
34-
clap_complete = "4.5.50"
34+
clap_complete = "4.5.51"
3535
clap_complete_fig = "4.5.2"
36-
clap_complete_nushell = "4.5.5"
36+
clap_complete_nushell = "4.5.6"
3737
serde_json = { workspace = true }
3838
vergen-gitcl = { version = "1.0.8", features = [ "build" ] }
3939

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.5.14"
3+
version = "25.5.28"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]

yazi-config/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-config"
3-
version = "25.5.14"
3+
version = "25.5.28"
44
edition = "2024"
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-codegen = { path = "../yazi-codegen", version = "25.5.14" }
13-
yazi-fs = { path = "../yazi-fs", version = "25.5.14" }
14-
yazi-macro = { path = "../yazi-macro", version = "25.5.14" }
15-
yazi-shared = { path = "../yazi-shared", version = "25.5.14" }
16-
yazi-term = { path = "../yazi-term", version = "25.5.14" }
12+
yazi-codegen = { path = "../yazi-codegen", version = "25.5.28" }
13+
yazi-fs = { path = "../yazi-fs", version = "25.5.28" }
14+
yazi-macro = { path = "../yazi-macro", version = "25.5.28" }
15+
yazi-shared = { path = "../yazi-shared", version = "25.5.28" }
16+
yazi-term = { path = "../yazi-term", version = "25.5.28" }
1717

1818
# External dependencies
1919
anyhow = { workspace = true }

0 commit comments

Comments
 (0)