Skip to content

Commit b65a880

Browse files
committed
chore: bump version to 25.5.31 (#2815)
1 parent 4fdc0f1 commit b65a880

File tree

20 files changed

+129
-129
lines changed

20 files changed

+129
-129
lines changed

Cargo.lock

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

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.28"
3+
version = "25.5.31"
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.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" }
12+
yazi-config = { path = "../yazi-config", version = "25.5.31" }
13+
yazi-macro = { path = "../yazi-macro", version = "25.5.31" }
14+
yazi-shared = { path = "../yazi-shared", version = "25.5.31" }
15+
yazi-term = { path = "../yazi-term", version = "25.5.31" }
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.28"
3+
version = "25.5.31"
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.28" }
13-
yazi-macro = { path = "../yazi-macro", version = "25.5.28" }
14-
yazi-shared = { path = "../yazi-shared", version = "25.5.28" }
12+
yazi-fs = { path = "../yazi-fs", version = "25.5.31" }
13+
yazi-macro = { path = "../yazi-macro", version = "25.5.31" }
14+
yazi-shared = { path = "../yazi-shared", version = "25.5.31" }
1515

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

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.5.28"
3+
version = "25.5.31"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,19 +9,19 @@ 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.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" }
12+
yazi-adapter = { path = "../yazi-adapter", version = "25.5.31" }
13+
yazi-config = { path = "../yazi-config", version = "25.5.31" }
14+
yazi-fs = { path = "../yazi-fs", version = "25.5.31" }
15+
yazi-macro = { path = "../yazi-macro", version = "25.5.31" }
16+
yazi-shared = { path = "../yazi-shared", version = "25.5.31" }
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.28" }
24+
yazi-shared = { path = "../yazi-shared", version = "25.5.31" }
2525

2626
# External dependencies
2727
clap = { workspace = true }

yazi-cli/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-cli"
3-
version = "25.5.28"
3+
version = "25.5.31"
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.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" }
12+
yazi-boot = { path = "../yazi-boot", version = "25.5.31" }
13+
yazi-dds = { path = "../yazi-dds", version = "25.5.31" }
14+
yazi-fs = { path = "../yazi-fs", version = "25.5.31" }
15+
yazi-macro = { path = "../yazi-macro", version = "25.5.31" }
16+
yazi-shared = { path = "../yazi-shared", version = "25.5.31" }
1717

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

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

3131
# External build dependencies
3232
anyhow = { 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.5.28"
3+
version = "25.5.31"
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.28"
3+
version = "25.5.31"
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.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" }
12+
yazi-codegen = { path = "../yazi-codegen", version = "25.5.31" }
13+
yazi-fs = { path = "../yazi-fs", version = "25.5.31" }
14+
yazi-macro = { path = "../yazi-macro", version = "25.5.31" }
15+
yazi-shared = { path = "../yazi-shared", version = "25.5.31" }
16+
yazi-term = { path = "../yazi-term", version = "25.5.31" }
1717

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

yazi-config/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,16 +111,16 @@ fn migrate(p: std::path::PathBuf) -> String {
111111

112112
if let Err(e) = std::fs::copy(&p, backup) {
113113
_ = TTY.writer().write_all(
114-
format!("WARNING: `[manager]` has been deprecated in favor of the new `[mgr]`, see #2803 for more details: https://github.com/sxyazi/yazi/pull/2803\n
115-
Trying to migrate your config automatically failed, please edit the file manually, error while backuping {p:?}: \n{e:?}\n").as_bytes(),
114+
format!("WARNING: `[manager]` has been deprecated in favor of the new `[mgr]`, see #2803 for more details: https://github.com/sxyazi/yazi/pull/2803\r\n
115+
Trying to migrate your config automatically failed, please edit the file manually, error while backuping {p:?}: {e}\r\n").as_bytes(),
116116
);
117117
return new;
118118
}
119119

120120
if let Err(e) = std::fs::write(&p, &new) {
121121
_ = TTY.writer().write_all(
122-
format!("WARNING: `[manager]` has been deprecated in favor of the new `[mgr]`, see #2803 for more details: https://github.com/sxyazi/yazi/pull/2803\n
123-
Trying to migrate your config automatically failed, please edit the file manually, error while writing {p:?}: \n{e:?}\n").as_bytes(),
122+
format!("WARNING: `[manager]` has been deprecated in favor of the new `[mgr]`, see #2803 for more details: https://github.com/sxyazi/yazi/pull/2803\r\n
123+
Trying to migrate your config automatically failed, please edit the file manually, error while writing {p:?}: {e}\r\n").as_bytes(),
124124
);
125125
}
126126
new

yazi-core/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-core"
3-
version = "25.5.28"
3+
version = "25.5.31"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,19 +9,19 @@ 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.28" }
13-
yazi-boot = { path = "../yazi-boot", version = "25.5.28" }
14-
yazi-codegen = { path = "../yazi-codegen", version = "25.5.28" }
15-
yazi-config = { path = "../yazi-config", version = "25.5.28" }
16-
yazi-dds = { path = "../yazi-dds", version = "25.5.28" }
17-
yazi-fs = { path = "../yazi-fs", version = "25.5.28" }
18-
yazi-macro = { path = "../yazi-macro", version = "25.5.28" }
19-
yazi-plugin = { path = "../yazi-plugin", version = "25.5.28" }
20-
yazi-proxy = { path = "../yazi-proxy", version = "25.5.28" }
21-
yazi-scheduler = { path = "../yazi-scheduler", version = "25.5.28" }
22-
yazi-shared = { path = "../yazi-shared", version = "25.5.28" }
23-
yazi-term = { path = "../yazi-term", version = "25.5.28" }
24-
yazi-widgets = { path = "../yazi-widgets", version = "25.5.28" }
12+
yazi-adapter = { path = "../yazi-adapter", version = "25.5.31" }
13+
yazi-boot = { path = "../yazi-boot", version = "25.5.31" }
14+
yazi-codegen = { path = "../yazi-codegen", version = "25.5.31" }
15+
yazi-config = { path = "../yazi-config", version = "25.5.31" }
16+
yazi-dds = { path = "../yazi-dds", version = "25.5.31" }
17+
yazi-fs = { path = "../yazi-fs", version = "25.5.31" }
18+
yazi-macro = { path = "../yazi-macro", version = "25.5.31" }
19+
yazi-plugin = { path = "../yazi-plugin", version = "25.5.31" }
20+
yazi-proxy = { path = "../yazi-proxy", version = "25.5.31" }
21+
yazi-scheduler = { path = "../yazi-scheduler", version = "25.5.31" }
22+
yazi-shared = { path = "../yazi-shared", version = "25.5.31" }
23+
yazi-term = { path = "../yazi-term", version = "25.5.31" }
24+
yazi-widgets = { path = "../yazi-widgets", version = "25.5.31" }
2525

2626
# External dependencies
2727
anyhow = { workspace = true }

yazi-dds/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-dds"
3-
version = "25.5.28"
3+
version = "25.5.31"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -13,11 +13,11 @@ default = [ "vendored-lua" ]
1313
vendored-lua = [ "mlua/vendored" ]
1414

1515
[dependencies]
16-
yazi-binding = { path = "../yazi-binding", version = "25.5.28" }
17-
yazi-boot = { path = "../yazi-boot", version = "25.5.28" }
18-
yazi-fs = { path = "../yazi-fs", version = "25.5.28" }
19-
yazi-macro = { path = "../yazi-macro", version = "25.5.28" }
20-
yazi-shared = { path = "../yazi-shared", version = "25.5.28" }
16+
yazi-binding = { path = "../yazi-binding", version = "25.5.31" }
17+
yazi-boot = { path = "../yazi-boot", version = "25.5.31" }
18+
yazi-fs = { path = "../yazi-fs", version = "25.5.31" }
19+
yazi-macro = { path = "../yazi-macro", version = "25.5.31" }
20+
yazi-shared = { path = "../yazi-shared", version = "25.5.31" }
2121

2222
# External dependencies
2323
anyhow = { workspace = true }

0 commit comments

Comments
 (0)