Skip to content

Commit f31147d

Browse files
authored
chore: bump version to 25.12.29 (#3471)
1 parent faf33e1 commit f31147d

File tree

29 files changed

+201
-197
lines changed

29 files changed

+201
-197
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/):
1212

1313
## [Unreleased]
1414

15+
## [v25.12.29]
16+
1517
### Added
1618

1719
- Remote file management ([#3396])
@@ -973,6 +975,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/):
973975
[v25.4.8]: https://github.com/sxyazi/yazi/compare/v25.3.2...v25.4.8
974976
[v25.5.28]: https://github.com/sxyazi/yazi/compare/v25.4.8...v25.5.28
975977
[v25.5.31]: https://github.com/sxyazi/yazi/compare/v25.5.28...v25.5.31
978+
[v25.12.29]: https://github.com/sxyazi/yazi/compare/v25.5.31...v25.12.29
976979
[#4]: https://github.com/sxyazi/yazi/pull/4
977980
[#5]: https://github.com/sxyazi/yazi/pull/5
978981
[#6]: https://github.com/sxyazi/yazi/pull/6

Cargo.lock

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

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@ Yazi (means "duck") is a terminal file manager written in Rust, based on non-blo
2323
- 🖼️ **Built-in Support for Multiple Image Protocols**: Also integrated with Überzug++ and Chafa, covering almost all terminals.
2424
- 🌟 **Built-in Code Highlighting and Image Decoding**: Combined with the pre-loading mechanism, greatly accelerates image and normal file loading.
2525
- 🔌 **Concurrent Plugin System**: UI plugins (rewriting most of the UI), functional plugins, custom previewer/preloader/spotter/fetcher; Just some pieces of Lua.
26+
- ☁️ **Virtual Filesystem**: Remote file management, custom search engines.
2627
- 📡 **Data Distribution Service**: Built on a client-server architecture (no additional server process required), integrated with a Lua-based publish-subscribe model, achieving cross-instance communication and state persistence.
2728
- 📦 **Package Manager**: Install plugins and themes with one command, keeping them up-to-date, or pin them to a specific version.
2829
- 🧰 Integration with ripgrep, fd, fzf, zoxide
2930
- 💫 Vim-like input/pick/confirm/which/notify component, auto-completion for cd paths
3031
- 🏷️ Multi-Tab Support, Cross-directory selection, Scrollable Preview (for videos, PDFs, archives, code, directories, etc.)
3132
- 🔄 Bulk Renaming, Archive Extraction, Visual Mode, File Chooser, [Git Integration](https://github.com/yazi-rs/plugins/tree/main/git.yazi), [Mount Manager](https://github.com/yazi-rs/plugins/tree/main/mount.yazi)
32-
- 🎨 Theme System, Mouse Support, Trash Bin, Custom Layouts, Virtual Filesystem, CSI u, OSC 52
33+
- 🎨 Theme System, Mouse Support, Trash Bin, Custom Layouts, CSI u, OSC 52
3334
- ... and more!
3435

3536
https://github.com/sxyazi/yazi/assets/17523360/92ff23fa-0cd5-4f04-b387-894c12265cc7

yazi-actor/Cargo.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-actor"
3-
version = "25.9.15"
3+
version = "25.12.29"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <sxyazi@gmail.com>" ]
@@ -16,22 +16,22 @@ default = [ "vendored-lua" ]
1616
vendored-lua = [ "mlua/vendored" ]
1717

1818
[dependencies]
19-
yazi-binding = { path = "../yazi-binding", version = "25.9.15" }
20-
yazi-boot = { path = "../yazi-boot", version = "25.9.15" }
21-
yazi-config = { path = "../yazi-config", version = "25.9.15" }
22-
yazi-core = { path = "../yazi-core", version = "25.9.15" }
23-
yazi-dds = { path = "../yazi-dds", version = "25.9.15" }
24-
yazi-fs = { path = "../yazi-fs", version = "25.9.15" }
25-
yazi-macro = { path = "../yazi-macro", version = "25.9.15" }
26-
yazi-parser = { path = "../yazi-parser", version = "25.9.15" }
27-
yazi-plugin = { path = "../yazi-plugin", version = "25.9.15" }
28-
yazi-proxy = { path = "../yazi-proxy", version = "25.9.15" }
29-
yazi-scheduler = { path = "../yazi-scheduler", version = "25.9.15" }
30-
yazi-shared = { path = "../yazi-shared", version = "25.9.15" }
31-
yazi-term = { path = "../yazi-term", version = "25.9.15" }
32-
yazi-vfs = { path = "../yazi-vfs", version = "25.9.15" }
33-
yazi-watcher = { path = "../yazi-watcher", version = "25.9.15" }
34-
yazi-widgets = { path = "../yazi-widgets", version = "25.9.15" }
19+
yazi-binding = { path = "../yazi-binding", version = "25.12.29" }
20+
yazi-boot = { path = "../yazi-boot", version = "25.12.29" }
21+
yazi-config = { path = "../yazi-config", version = "25.12.29" }
22+
yazi-core = { path = "../yazi-core", version = "25.12.29" }
23+
yazi-dds = { path = "../yazi-dds", version = "25.12.29" }
24+
yazi-fs = { path = "../yazi-fs", version = "25.12.29" }
25+
yazi-macro = { path = "../yazi-macro", version = "25.12.29" }
26+
yazi-parser = { path = "../yazi-parser", version = "25.12.29" }
27+
yazi-plugin = { path = "../yazi-plugin", version = "25.12.29" }
28+
yazi-proxy = { path = "../yazi-proxy", version = "25.12.29" }
29+
yazi-scheduler = { path = "../yazi-scheduler", version = "25.12.29" }
30+
yazi-shared = { path = "../yazi-shared", version = "25.12.29" }
31+
yazi-term = { path = "../yazi-term", version = "25.12.29" }
32+
yazi-vfs = { path = "../yazi-vfs", version = "25.12.29" }
33+
yazi-watcher = { path = "../yazi-watcher", version = "25.12.29" }
34+
yazi-widgets = { path = "../yazi-widgets", version = "25.12.29" }
3535

3636
# External dependencies
3737
anyhow = { workspace = true }

yazi-adapter/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-adapter"
3-
version = "25.9.15"
3+
version = "25.12.29"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <sxyazi@gmail.com>" ]
@@ -12,11 +12,11 @@ repository = "https://github.com/sxyazi/yazi"
1212
workspace = true
1313

1414
[dependencies]
15-
yazi-config = { path = "../yazi-config", version = "25.9.15" }
16-
yazi-fs = { path = "../yazi-fs", version = "25.9.15" }
17-
yazi-macro = { path = "../yazi-macro", version = "25.9.15" }
18-
yazi-shared = { path = "../yazi-shared", version = "25.9.15" }
19-
yazi-term = { path = "../yazi-term", version = "25.9.15" }
15+
yazi-config = { path = "../yazi-config", version = "25.12.29" }
16+
yazi-fs = { path = "../yazi-fs", version = "25.12.29" }
17+
yazi-macro = { path = "../yazi-macro", version = "25.12.29" }
18+
yazi-shared = { path = "../yazi-shared", version = "25.12.29" }
19+
yazi-term = { path = "../yazi-term", version = "25.12.29" }
2020

2121
# External dependencies
2222
ansi-to-tui = { workspace = true }

yazi-binding/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-binding"
3-
version = "25.9.15"
3+
version = "25.12.29"
44
edition = "2024"
55
license = "MIT"
66
authors = [ "sxyazi <sxyazi@gmail.com>" ]
@@ -16,11 +16,11 @@ default = [ "vendored-lua" ]
1616
vendored-lua = [ "mlua/vendored" ]
1717

1818
[dependencies]
19-
yazi-adapter = { path = "../yazi-adapter", version = "25.9.15" }
20-
yazi-config = { path = "../yazi-config", version = "25.9.15" }
21-
yazi-fs = { path = "../yazi-fs", version = "25.9.15" }
22-
yazi-macro = { path = "../yazi-macro", version = "25.9.15" }
23-
yazi-shared = { path = "../yazi-shared", version = "25.9.15" }
19+
yazi-adapter = { path = "../yazi-adapter", version = "25.12.29" }
20+
yazi-config = { path = "../yazi-config", version = "25.12.29" }
21+
yazi-fs = { path = "../yazi-fs", version = "25.12.29" }
22+
yazi-macro = { path = "../yazi-macro", version = "25.12.29" }
23+
yazi-shared = { path = "../yazi-shared", version = "25.12.29" }
2424

2525
# External dependencies
2626
ansi-to-tui = { workspace = true }

0 commit comments

Comments
 (0)