From 968bb182af7d5b5755daebde9e1aa4378f0fde85 Mon Sep 17 00:00:00 2001 From: sxyazi Date: Fri, 7 Feb 2025 16:41:59 +0800 Subject: [PATCH] chore: bump version to 25.2.7 --- Cargo.lock | 34 +++++++++++++++++----------------- yazi-adapter/Cargo.toml | 8 ++++---- yazi-boot/Cargo.toml | 12 ++++++------ yazi-cli/Cargo.toml | 14 +++++++------- yazi-codegen/Cargo.toml | 2 +- yazi-config/Cargo.toml | 8 ++++---- yazi-core/Cargo.toml | 24 ++++++++++++------------ yazi-dds/Cargo.toml | 10 +++++----- yazi-ffi/Cargo.toml | 4 ++-- yazi-fm/Cargo.toml | 24 ++++++++++++------------ yazi-fs/Cargo.toml | 8 ++++---- yazi-macro/Cargo.toml | 2 +- yazi-plugin/Cargo.toml | 18 +++++++++--------- yazi-proxy/Cargo.toml | 14 +++++++------- yazi-scheduler/Cargo.toml | 16 ++++++++-------- yazi-shared/Cargo.toml | 4 ++-- 16 files changed, 101 insertions(+), 101 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b21506f36..ef31a48aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1773,9 +1773,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.20.2" +version = "1.20.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" +checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e" [[package]] name = "onig" @@ -3315,7 +3315,7 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" [[package]] name = "yazi-adapter" -version = "25.2.5" +version = "25.2.7" dependencies = [ "ansi-to-tui", "anyhow", @@ -3335,7 +3335,7 @@ dependencies = [ [[package]] name = "yazi-boot" -version = "25.2.5" +version = "25.2.7" dependencies = [ "clap", "clap_complete", @@ -3353,7 +3353,7 @@ dependencies = [ [[package]] name = "yazi-cli" -version = "25.2.5" +version = "25.2.7" dependencies = [ "anyhow", "clap", @@ -3376,7 +3376,7 @@ dependencies = [ [[package]] name = "yazi-codegen" -version = "25.2.5" +version = "25.2.7" dependencies = [ "quote", "syn", @@ -3384,7 +3384,7 @@ dependencies = [ [[package]] name = "yazi-config" -version = "25.2.5" +version = "25.2.7" dependencies = [ "anyhow", "bitflags 2.8.0", @@ -3404,7 +3404,7 @@ dependencies = [ [[package]] name = "yazi-core" -version = "25.2.5" +version = "25.2.7" dependencies = [ "anyhow", "bitflags 2.8.0", @@ -3438,7 +3438,7 @@ dependencies = [ [[package]] name = "yazi-dds" -version = "25.2.5" +version = "25.2.7" dependencies = [ "anyhow", "mlua", @@ -3459,7 +3459,7 @@ dependencies = [ [[package]] name = "yazi-ffi" -version = "25.2.5" +version = "25.2.7" dependencies = [ "anyhow", "core-foundation-sys", @@ -3470,7 +3470,7 @@ dependencies = [ [[package]] name = "yazi-fm" -version = "25.2.5" +version = "25.2.7" dependencies = [ "anyhow", "better-panic", @@ -3506,7 +3506,7 @@ dependencies = [ [[package]] name = "yazi-fs" -version = "25.2.5" +version = "25.2.7" dependencies = [ "anyhow", "arc-swap", @@ -3532,11 +3532,11 @@ dependencies = [ [[package]] name = "yazi-macro" -version = "25.2.5" +version = "25.2.7" [[package]] name = "yazi-plugin" -version = "25.2.5" +version = "25.2.7" dependencies = [ "ansi-to-tui", "anyhow", @@ -3577,7 +3577,7 @@ checksum = "f4b6c8e12e39ac0f79fa96f36e5b88e0da8d230691abd729eec709b43c74f632" [[package]] name = "yazi-proxy" -version = "25.2.5" +version = "25.2.7" dependencies = [ "anyhow", "mlua", @@ -3589,7 +3589,7 @@ dependencies = [ [[package]] name = "yazi-scheduler" -version = "25.2.5" +version = "25.2.7" dependencies = [ "anyhow", "async-priority-channel", @@ -3612,7 +3612,7 @@ dependencies = [ [[package]] name = "yazi-shared" -version = "25.2.5" +version = "25.2.7" dependencies = [ "anyhow", "crossterm", diff --git a/yazi-adapter/Cargo.toml b/yazi-adapter/Cargo.toml index f08071401..fb30a7231 100644 --- a/yazi-adapter/Cargo.toml +++ b/yazi-adapter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-adapter" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,9 +9,9 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-config = { path = "../yazi-config", version = "25.2.5" } -yazi-macro = { path = "../yazi-macro", version = "25.2.5" } -yazi-shared = { path = "../yazi-shared", version = "25.2.5" } +yazi-config = { path = "../yazi-config", version = "25.2.7" } +yazi-macro = { path = "../yazi-macro", version = "25.2.7" } +yazi-shared = { path = "../yazi-shared", version = "25.2.7" } # External dependencies ansi-to-tui = { workspace = true } diff --git a/yazi-boot/Cargo.toml b/yazi-boot/Cargo.toml index da2da1d99..8f22bc4b8 100644 --- a/yazi-boot/Cargo.toml +++ b/yazi-boot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-boot" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,11 +9,11 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-adapter = { path = "../yazi-adapter", version = "25.2.5" } -yazi-config = { path = "../yazi-config", version = "25.2.5" } -yazi-fs = { path = "../yazi-fs", version = "25.2.5" } -yazi-macro = { path = "../yazi-macro", version = "25.2.5" } -yazi-shared = { path = "../yazi-shared", version = "25.2.5" } +yazi-adapter = { path = "../yazi-adapter", version = "25.2.7" } +yazi-config = { path = "../yazi-config", version = "25.2.7" } +yazi-fs = { path = "../yazi-fs", version = "25.2.7" } +yazi-macro = { path = "../yazi-macro", version = "25.2.7" } +yazi-shared = { path = "../yazi-shared", version = "25.2.7" } # External dependencies clap = { workspace = true } diff --git a/yazi-cli/Cargo.toml b/yazi-cli/Cargo.toml index a037951c3..6fc2451c4 100644 --- a/yazi-cli/Cargo.toml +++ b/yazi-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-cli" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,11 +9,11 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-boot = { path = "../yazi-boot", version = "25.2.5" } -yazi-dds = { path = "../yazi-dds", version = "25.2.5" } -yazi-fs = { path = "../yazi-fs", version = "25.2.5" } -yazi-macro = { path = "../yazi-macro", version = "25.2.5" } -yazi-shared = { path = "../yazi-shared", version = "25.2.5" } +yazi-boot = { path = "../yazi-boot", version = "25.2.7" } +yazi-dds = { path = "../yazi-dds", version = "25.2.7" } +yazi-fs = { path = "../yazi-fs", version = "25.2.7" } +yazi-macro = { path = "../yazi-macro", version = "25.2.7" } +yazi-shared = { path = "../yazi-shared", version = "25.2.7" } # External dependencies anyhow = { workspace = true } @@ -26,7 +26,7 @@ toml = { workspace = true } twox-hash = { workspace = true } [build-dependencies] -yazi-shared = { path = "../yazi-shared", version = "25.2.5" } +yazi-shared = { path = "../yazi-shared", version = "25.2.7" } # External build dependencies anyhow = { workspace = true } diff --git a/yazi-codegen/Cargo.toml b/yazi-codegen/Cargo.toml index c338fff72..36e797f43 100644 --- a/yazi-codegen/Cargo.toml +++ b/yazi-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-codegen" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] diff --git a/yazi-config/Cargo.toml b/yazi-config/Cargo.toml index cabf7cd61..14ecd9c4e 100644 --- a/yazi-config/Cargo.toml +++ b/yazi-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-config" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,9 +9,9 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-fs = { path = "../yazi-fs", version = "25.2.5" } -yazi-macro = { path = "../yazi-macro", version = "25.2.5" } -yazi-shared = { path = "../yazi-shared", version = "25.2.5" } +yazi-fs = { path = "../yazi-fs", version = "25.2.7" } +yazi-macro = { path = "../yazi-macro", version = "25.2.7" } +yazi-shared = { path = "../yazi-shared", version = "25.2.7" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-core/Cargo.toml b/yazi-core/Cargo.toml index 3c6044ccd..b78181ad0 100644 --- a/yazi-core/Cargo.toml +++ b/yazi-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-core" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,17 +9,17 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-adapter = { path = "../yazi-adapter", version = "25.2.5" } -yazi-boot = { path = "../yazi-boot", version = "25.2.5" } -yazi-codegen = { path = "../yazi-codegen", version = "25.2.5" } -yazi-config = { path = "../yazi-config", version = "25.2.5" } -yazi-dds = { path = "../yazi-dds", version = "25.2.5" } -yazi-fs = { path = "../yazi-fs", version = "25.2.5" } -yazi-macro = { path = "../yazi-macro", version = "25.2.5" } -yazi-plugin = { path = "../yazi-plugin", version = "25.2.5" } -yazi-proxy = { path = "../yazi-proxy", version = "25.2.5" } -yazi-scheduler = { path = "../yazi-scheduler", version = "25.2.5" } -yazi-shared = { path = "../yazi-shared", version = "25.2.5" } +yazi-adapter = { path = "../yazi-adapter", version = "25.2.7" } +yazi-boot = { path = "../yazi-boot", version = "25.2.7" } +yazi-codegen = { path = "../yazi-codegen", version = "25.2.7" } +yazi-config = { path = "../yazi-config", version = "25.2.7" } +yazi-dds = { path = "../yazi-dds", version = "25.2.7" } +yazi-fs = { path = "../yazi-fs", version = "25.2.7" } +yazi-macro = { path = "../yazi-macro", version = "25.2.7" } +yazi-plugin = { path = "../yazi-plugin", version = "25.2.7" } +yazi-proxy = { path = "../yazi-proxy", version = "25.2.7" } +yazi-scheduler = { path = "../yazi-scheduler", version = "25.2.7" } +yazi-shared = { path = "../yazi-shared", version = "25.2.7" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-dds/Cargo.toml b/yazi-dds/Cargo.toml index b1301c2d1..c60c4306e 100644 --- a/yazi-dds/Cargo.toml +++ b/yazi-dds/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-dds" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -13,10 +13,10 @@ default = [ "vendored-lua" ] vendored-lua = [ "mlua/vendored" ] [dependencies] -yazi-boot = { path = "../yazi-boot", version = "25.2.5" } -yazi-fs = { path = "../yazi-fs", version = "25.2.5" } -yazi-macro = { path = "../yazi-macro", version = "25.2.5" } -yazi-shared = { path = "../yazi-shared", version = "25.2.5" } +yazi-boot = { path = "../yazi-boot", version = "25.2.7" } +yazi-fs = { path = "../yazi-fs", version = "25.2.7" } +yazi-macro = { path = "../yazi-macro", version = "25.2.7" } +yazi-shared = { path = "../yazi-shared", version = "25.2.7" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-ffi/Cargo.toml b/yazi-ffi/Cargo.toml index aa1bfa82f..0475293af 100644 --- a/yazi-ffi/Cargo.toml +++ b/yazi-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-ffi" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,7 +9,7 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-macro = { path = "../yazi-macro", version = "25.2.5" } +yazi-macro = { path = "../yazi-macro", version = "25.2.7" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-fm/Cargo.toml b/yazi-fm/Cargo.toml index 94788c0c9..9d7879b01 100644 --- a/yazi-fm/Cargo.toml +++ b/yazi-fm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-fm" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -13,17 +13,17 @@ default = [ "vendored-lua" ] vendored-lua = [ "mlua/vendored" ] [dependencies] -yazi-adapter = { path = "../yazi-adapter", version = "25.2.5" } -yazi-boot = { path = "../yazi-boot", version = "25.2.5" } -yazi-codegen = { path = "../yazi-codegen", version = "25.2.5" } -yazi-config = { path = "../yazi-config", version = "25.2.5" } -yazi-core = { path = "../yazi-core", version = "25.2.5" } -yazi-dds = { path = "../yazi-dds", version = "25.2.5" } -yazi-fs = { path = "../yazi-fs", version = "25.2.5" } -yazi-macro = { path = "../yazi-macro", version = "25.2.5" } -yazi-plugin = { path = "../yazi-plugin", version = "25.2.5" } -yazi-proxy = { path = "../yazi-proxy", version = "25.2.5" } -yazi-shared = { path = "../yazi-shared", version = "25.2.5" } +yazi-adapter = { path = "../yazi-adapter", version = "25.2.7" } +yazi-boot = { path = "../yazi-boot", version = "25.2.7" } +yazi-codegen = { path = "../yazi-codegen", version = "25.2.7" } +yazi-config = { path = "../yazi-config", version = "25.2.7" } +yazi-core = { path = "../yazi-core", version = "25.2.7" } +yazi-dds = { path = "../yazi-dds", version = "25.2.7" } +yazi-fs = { path = "../yazi-fs", version = "25.2.7" } +yazi-macro = { path = "../yazi-macro", version = "25.2.7" } +yazi-plugin = { path = "../yazi-plugin", version = "25.2.7" } +yazi-proxy = { path = "../yazi-proxy", version = "25.2.7" } +yazi-shared = { path = "../yazi-shared", version = "25.2.7" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-fs/Cargo.toml b/yazi-fs/Cargo.toml index 587dc1773..2f298749f 100644 --- a/yazi-fs/Cargo.toml +++ b/yazi-fs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-fs" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,9 +9,9 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-ffi = { path = "../yazi-ffi", version = "25.2.5" } -yazi-macro = { path = "../yazi-macro", version = "25.2.5" } -yazi-shared = { path = "../yazi-shared", version = "25.2.5" } +yazi-ffi = { path = "../yazi-ffi", version = "25.2.7" } +yazi-macro = { path = "../yazi-macro", version = "25.2.7" } +yazi-shared = { path = "../yazi-shared", version = "25.2.7" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-macro/Cargo.toml b/yazi-macro/Cargo.toml index 6a17505ce..6865ec563 100644 --- a/yazi-macro/Cargo.toml +++ b/yazi-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-macro" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] diff --git a/yazi-plugin/Cargo.toml b/yazi-plugin/Cargo.toml index e5accc5f0..09d206804 100644 --- a/yazi-plugin/Cargo.toml +++ b/yazi-plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-plugin" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -13,14 +13,14 @@ default = [ "vendored-lua" ] vendored-lua = [ "mlua/vendored" ] [dependencies] -yazi-adapter = { path = "../yazi-adapter", version = "25.2.5" } -yazi-boot = { path = "../yazi-boot", version = "25.2.5" } -yazi-config = { path = "../yazi-config", version = "25.2.5" } -yazi-dds = { path = "../yazi-dds", version = "25.2.5" } -yazi-fs = { path = "../yazi-fs", version = "25.2.5" } -yazi-macro = { path = "../yazi-macro", version = "25.2.5" } -yazi-proxy = { path = "../yazi-proxy", version = "25.2.5" } -yazi-shared = { path = "../yazi-shared", version = "25.2.5" } +yazi-adapter = { path = "../yazi-adapter", version = "25.2.7" } +yazi-boot = { path = "../yazi-boot", version = "25.2.7" } +yazi-config = { path = "../yazi-config", version = "25.2.7" } +yazi-dds = { path = "../yazi-dds", version = "25.2.7" } +yazi-fs = { path = "../yazi-fs", version = "25.2.7" } +yazi-macro = { path = "../yazi-macro", version = "25.2.7" } +yazi-proxy = { path = "../yazi-proxy", version = "25.2.7" } +yazi-shared = { path = "../yazi-shared", version = "25.2.7" } # External dependencies ansi-to-tui = { workspace = true } diff --git a/yazi-proxy/Cargo.toml b/yazi-proxy/Cargo.toml index 0c6469245..4b94c4ee7 100644 --- a/yazi-proxy/Cargo.toml +++ b/yazi-proxy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-proxy" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -13,11 +13,11 @@ default = [ "vendored-lua" ] vendored-lua = [ "mlua/vendored" ] [dependencies] -yazi-config = { path = "../yazi-config", version = "25.2.5" } -yazi-macro = { path = "../yazi-macro", version = "25.2.5" } -yazi-shared = { path = "../yazi-shared", version = "25.2.5" } +yazi-config = { path = "../yazi-config", version = "25.2.7" } +yazi-macro = { path = "../yazi-macro", version = "25.2.7" } +yazi-shared = { path = "../yazi-shared", version = "25.2.7" } # External dependencies -anyhow = { workspace = true } -mlua = { workspace = true } -tokio = { workspace = true } +anyhow = { workspace = true } +mlua = { workspace = true } +tokio = { workspace = true } diff --git a/yazi-scheduler/Cargo.toml b/yazi-scheduler/Cargo.toml index ba4d8b07d..6449407a8 100644 --- a/yazi-scheduler/Cargo.toml +++ b/yazi-scheduler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-scheduler" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -9,13 +9,13 @@ homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] -yazi-config = { path = "../yazi-config", version = "25.2.5" } -yazi-dds = { path = "../yazi-dds", version = "25.2.5" } -yazi-fs = { path = "../yazi-fs", version = "25.2.5" } -yazi-macro = { path = "../yazi-macro", version = "25.2.5" } -yazi-plugin = { path = "../yazi-plugin", version = "25.2.5" } -yazi-proxy = { path = "../yazi-proxy", version = "25.2.5" } -yazi-shared = { path = "../yazi-shared", version = "25.2.5" } +yazi-config = { path = "../yazi-config", version = "25.2.7" } +yazi-dds = { path = "../yazi-dds", version = "25.2.7" } +yazi-fs = { path = "../yazi-fs", version = "25.2.7" } +yazi-macro = { path = "../yazi-macro", version = "25.2.7" } +yazi-plugin = { path = "../yazi-plugin", version = "25.2.7" } +yazi-proxy = { path = "../yazi-proxy", version = "25.2.7" } +yazi-shared = { path = "../yazi-shared", version = "25.2.7" } # External dependencies anyhow = { workspace = true } diff --git a/yazi-shared/Cargo.toml b/yazi-shared/Cargo.toml index 78b6e0877..ef04b58f1 100644 --- a/yazi-shared/Cargo.toml +++ b/yazi-shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yazi-shared" -version = "25.2.5" +version = "25.2.7" edition = "2021" license = "MIT" authors = [ "sxyazi " ] @@ -10,7 +10,7 @@ repository = "https://github.com/sxyazi/yazi" rust-version = "1.83.0" [dependencies] -yazi-macro = { path = "../yazi-macro", version = "25.2.5" } +yazi-macro = { path = "../yazi-macro", version = "25.2.7" } # External dependencies anyhow = { workspace = true }