Skip to content

Commit 4e0acf8

Browse files
committed
chore: bump version to 26.1.22
1 parent d17e7e1 commit 4e0acf8

File tree

29 files changed

+220
-207
lines changed

29 files changed

+220
-207
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+
## [v26.1.22]
16+
1517
### Added
1618

1719
- Tree view for the preset archive previewer ([#3525])
@@ -1005,6 +1007,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/):
10051007
[v25.5.31]: https://github.com/sxyazi/yazi/compare/v25.5.28...v25.5.31
10061008
[v25.12.29]: https://github.com/sxyazi/yazi/compare/v25.5.31...v25.12.29
10071009
[v26.1.4]: https://github.com/sxyazi/yazi/compare/v25.12.29...v26.1.4
1010+
[v26.1.22]: https://github.com/sxyazi/yazi/compare/v26.1.4...v26.1.22
10081011
[#4]: https://github.com/sxyazi/yazi/pull/4
10091012
[#5]: https://github.com/sxyazi/yazi/pull/5
10101013
[#6]: https://github.com/sxyazi/yazi/pull/6

Cargo.lock

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

flake.lock

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

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 = "26.1.4"
3+
version = "26.1.22"
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 = "26.1.4" }
20-
yazi-boot = { path = "../yazi-boot", version = "26.1.4" }
21-
yazi-config = { path = "../yazi-config", version = "26.1.4" }
22-
yazi-core = { path = "../yazi-core", version = "26.1.4" }
23-
yazi-dds = { path = "../yazi-dds", version = "26.1.4" }
24-
yazi-fs = { path = "../yazi-fs", version = "26.1.4" }
25-
yazi-macro = { path = "../yazi-macro", version = "26.1.4" }
26-
yazi-parser = { path = "../yazi-parser", version = "26.1.4" }
27-
yazi-plugin = { path = "../yazi-plugin", version = "26.1.4" }
28-
yazi-proxy = { path = "../yazi-proxy", version = "26.1.4" }
29-
yazi-scheduler = { path = "../yazi-scheduler", version = "26.1.4" }
30-
yazi-shared = { path = "../yazi-shared", version = "26.1.4" }
31-
yazi-term = { path = "../yazi-term", version = "26.1.4" }
32-
yazi-vfs = { path = "../yazi-vfs", version = "26.1.4" }
33-
yazi-watcher = { path = "../yazi-watcher", version = "26.1.4" }
34-
yazi-widgets = { path = "../yazi-widgets", version = "26.1.4" }
19+
yazi-binding = { path = "../yazi-binding", version = "26.1.22" }
20+
yazi-boot = { path = "../yazi-boot", version = "26.1.22" }
21+
yazi-config = { path = "../yazi-config", version = "26.1.22" }
22+
yazi-core = { path = "../yazi-core", version = "26.1.22" }
23+
yazi-dds = { path = "../yazi-dds", version = "26.1.22" }
24+
yazi-fs = { path = "../yazi-fs", version = "26.1.22" }
25+
yazi-macro = { path = "../yazi-macro", version = "26.1.22" }
26+
yazi-parser = { path = "../yazi-parser", version = "26.1.22" }
27+
yazi-plugin = { path = "../yazi-plugin", version = "26.1.22" }
28+
yazi-proxy = { path = "../yazi-proxy", version = "26.1.22" }
29+
yazi-scheduler = { path = "../yazi-scheduler", version = "26.1.22" }
30+
yazi-shared = { path = "../yazi-shared", version = "26.1.22" }
31+
yazi-term = { path = "../yazi-term", version = "26.1.22" }
32+
yazi-vfs = { path = "../yazi-vfs", version = "26.1.22" }
33+
yazi-watcher = { path = "../yazi-watcher", version = "26.1.22" }
34+
yazi-widgets = { path = "../yazi-widgets", version = "26.1.22" }
3535

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

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

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

2121
# External dependencies
2222
ansi-to-tui = { workspace = true }
2323
anyhow = { workspace = true }
2424
base64 = { workspace = true }
2525
crossterm = { workspace = true }
2626
image = { version = "0.25.9", default-features = false, features = [ "avif", "bmp", "dds", "exr", "ff", "gif", "hdr", "ico", "jpeg", "png", "pnm", "qoi", "tga", "tiff", "webp" ] }
27-
moxcms = "0.7.11"
27+
moxcms = "0.8.0"
2828
palette = { version = "0.7.6", default-features = false }
2929
quantette = { version = "0.5.1", default-features = false }
3030
ratatui = { workspace = true }

0 commit comments

Comments
 (0)