Skip to content

Commit

Permalink
chore: bump version to 0.4.0 (#2011)
Browse files Browse the repository at this point in the history
  • Loading branch information
sxyazi authored Dec 8, 2024
1 parent de93e62 commit b8b3ab9
Show file tree
Hide file tree
Showing 17 changed files with 94 additions and 101 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
## The main branch is the upcoming v0.4 development version. Please see [the `shipped` tag](https://github.com/sxyazi/yazi/tree/shipped) for the stable version of Yazi.

For breaking changes, see [Migrating to Yazi v0.4.0](https://github.com/sxyazi/yazi/issues/1772).

<br><br>

<div align="center">
<img src="assets/logo.png" alt="Yazi logo" width="20%">
</div>
Expand Down
8 changes: 4 additions & 4 deletions yazi-adapter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yazi-adapter"
version = "0.3.3"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = [ "sxyazi <[email protected]>" ]
Expand All @@ -9,9 +9,9 @@ homepage = "https://yazi-rs.github.io"
repository = "https://github.com/sxyazi/yazi"

[dependencies]
yazi-config = { path = "../yazi-config", version = "0.3.3" }
yazi-macro = { path = "../yazi-macro", version = "0.3.3" }
yazi-shared = { path = "../yazi-shared", version = "0.3.3" }
yazi-config = { path = "../yazi-config", version = "0.4.0" }
yazi-macro = { path = "../yazi-macro", version = "0.4.0" }
yazi-shared = { path = "../yazi-shared", version = "0.4.0" }

# External dependencies
ansi-to-tui = { workspace = true }
Expand Down
12 changes: 6 additions & 6 deletions yazi-boot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yazi-boot"
version = "0.3.3"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = [ "sxyazi <[email protected]>" ]
Expand All @@ -9,11 +9,11 @@ homepage = "https://yazi-rs.github.io"
repository = "https://github.com/sxyazi/yazi"

[dependencies]
yazi-adapter = { path = "../yazi-adapter", version = "0.3.3" }
yazi-config = { path = "../yazi-config", version = "0.3.3" }
yazi-fs = { path = "../yazi-fs", version = "0.3.3" }
yazi-macro = { path = "../yazi-macro", version = "0.3.3" }
yazi-shared = { path = "../yazi-shared", version = "0.3.3" }
yazi-adapter = { path = "../yazi-adapter", version = "0.4.0" }
yazi-config = { path = "../yazi-config", version = "0.4.0" }
yazi-fs = { path = "../yazi-fs", version = "0.4.0" }
yazi-macro = { path = "../yazi-macro", version = "0.4.0" }
yazi-shared = { path = "../yazi-shared", version = "0.4.0" }

# External dependencies
clap = { workspace = true }
Expand Down
14 changes: 7 additions & 7 deletions yazi-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yazi-cli"
version = "0.3.3"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = [ "sxyazi <[email protected]>" ]
Expand All @@ -9,11 +9,11 @@ homepage = "https://yazi-rs.github.io"
repository = "https://github.com/sxyazi/yazi"

[dependencies]
yazi-boot = { path = "../yazi-boot", version = "0.3.3" }
yazi-dds = { path = "../yazi-dds", version = "0.3.3" }
yazi-fs = { path = "../yazi-fs", version = "0.3.3" }
yazi-macro = { path = "../yazi-macro", version = "0.3.3" }
yazi-shared = { path = "../yazi-shared", version = "0.3.3" }
yazi-boot = { path = "../yazi-boot", version = "0.4.0" }
yazi-dds = { path = "../yazi-dds", version = "0.4.0" }
yazi-fs = { path = "../yazi-fs", version = "0.4.0" }
yazi-macro = { path = "../yazi-macro", version = "0.4.0" }
yazi-shared = { path = "../yazi-shared", version = "0.4.0" }

# External dependencies
anyhow = { workspace = true }
Expand All @@ -25,7 +25,7 @@ tokio = { workspace = true }
toml_edit = "0.22.22"

[build-dependencies]
yazi-shared = { path = "../yazi-shared", version = "0.3.3" }
yazi-shared = { path = "../yazi-shared", version = "0.4.0" }

# External build dependencies
anyhow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion yazi-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yazi-codegen"
version = "0.3.3"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = [ "sxyazi <[email protected]>" ]
Expand Down
8 changes: 4 additions & 4 deletions yazi-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yazi-config"
version = "0.3.3"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = [ "sxyazi <[email protected]>" ]
Expand All @@ -9,9 +9,9 @@ homepage = "https://yazi-rs.github.io"
repository = "https://github.com/sxyazi/yazi"

[dependencies]
yazi-fs = { path = "../yazi-fs", version = "0.3.3" }
yazi-macro = { path = "../yazi-macro", version = "0.3.3" }
yazi-shared = { path = "../yazi-shared", version = "0.3.3" }
yazi-fs = { path = "../yazi-fs", version = "0.4.0" }
yazi-macro = { path = "../yazi-macro", version = "0.4.0" }
yazi-shared = { path = "../yazi-shared", version = "0.4.0" }

# External dependencies
anyhow = { workspace = true }
Expand Down
24 changes: 12 additions & 12 deletions yazi-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yazi-core"
version = "0.3.3"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = [ "sxyazi <[email protected]>" ]
Expand All @@ -9,17 +9,17 @@ homepage = "https://yazi-rs.github.io"
repository = "https://github.com/sxyazi/yazi"

[dependencies]
yazi-adapter = { path = "../yazi-adapter", version = "0.3.3" }
yazi-boot = { path = "../yazi-boot", version = "0.3.3" }
yazi-codegen = { path = "../yazi-codegen", version = "0.3.3" }
yazi-config = { path = "../yazi-config", version = "0.3.3" }
yazi-dds = { path = "../yazi-dds", version = "0.3.3" }
yazi-fs = { path = "../yazi-fs", version = "0.3.3" }
yazi-macro = { path = "../yazi-macro", version = "0.3.3" }
yazi-plugin = { path = "../yazi-plugin", version = "0.3.3" }
yazi-proxy = { path = "../yazi-proxy", version = "0.3.3" }
yazi-scheduler = { path = "../yazi-scheduler", version = "0.3.3" }
yazi-shared = { path = "../yazi-shared", version = "0.3.3" }
yazi-adapter = { path = "../yazi-adapter", version = "0.4.0" }
yazi-boot = { path = "../yazi-boot", version = "0.4.0" }
yazi-codegen = { path = "../yazi-codegen", version = "0.4.0" }
yazi-config = { path = "../yazi-config", version = "0.4.0" }
yazi-dds = { path = "../yazi-dds", version = "0.4.0" }
yazi-fs = { path = "../yazi-fs", version = "0.4.0" }
yazi-macro = { path = "../yazi-macro", version = "0.4.0" }
yazi-plugin = { path = "../yazi-plugin", version = "0.4.0" }
yazi-proxy = { path = "../yazi-proxy", version = "0.4.0" }
yazi-scheduler = { path = "../yazi-scheduler", version = "0.4.0" }
yazi-shared = { path = "../yazi-shared", version = "0.4.0" }

# External dependencies
anyhow = { workspace = true }
Expand Down
5 changes: 2 additions & 3 deletions yazi-core/src/tab/tab.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,8 @@ impl Default for Tab {

impl Tab {
pub fn shutdown(&mut self) {
if let Some(handle) = self.search.take() {
handle.abort();
}
self.search.take().map(|h| h.abort());
self.preview.reset();
}
}

Expand Down
10 changes: 5 additions & 5 deletions yazi-dds/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yazi-dds"
version = "0.3.3"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = [ "sxyazi <[email protected]>" ]
Expand All @@ -13,10 +13,10 @@ default = [ "vendored-lua" ]
vendored-lua = [ "mlua/vendored" ]

[dependencies]
yazi-boot = { path = "../yazi-boot", version = "0.3.3" }
yazi-fs = { path = "../yazi-fs", version = "0.3.3" }
yazi-macro = { path = "../yazi-macro", version = "0.3.3" }
yazi-shared = { path = "../yazi-shared", version = "0.3.3" }
yazi-boot = { path = "../yazi-boot", version = "0.4.0" }
yazi-fs = { path = "../yazi-fs", version = "0.4.0" }
yazi-macro = { path = "../yazi-macro", version = "0.4.0" }
yazi-shared = { path = "../yazi-shared", version = "0.4.0" }

# External dependencies
anyhow = { workspace = true }
Expand Down
24 changes: 12 additions & 12 deletions yazi-fm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yazi-fm"
version = "0.3.3"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = [ "sxyazi <[email protected]>" ]
Expand All @@ -13,17 +13,17 @@ default = [ "vendored-lua" ]
vendored-lua = [ "mlua/vendored" ]

[dependencies]
yazi-adapter = { path = "../yazi-adapter", version = "0.3.3" }
yazi-boot = { path = "../yazi-boot", version = "0.3.3" }
yazi-codegen = { path = "../yazi-codegen", version = "0.3.3" }
yazi-config = { path = "../yazi-config", version = "0.3.3" }
yazi-core = { path = "../yazi-core", version = "0.3.3" }
yazi-dds = { path = "../yazi-dds", version = "0.3.3" }
yazi-fs = { path = "../yazi-fs", version = "0.3.3" }
yazi-macro = { path = "../yazi-macro", version = "0.3.3" }
yazi-plugin = { path = "../yazi-plugin", version = "0.3.3" }
yazi-proxy = { path = "../yazi-proxy", version = "0.3.3" }
yazi-shared = { path = "../yazi-shared", version = "0.3.3" }
yazi-adapter = { path = "../yazi-adapter", version = "0.4.0" }
yazi-boot = { path = "../yazi-boot", version = "0.4.0" }
yazi-codegen = { path = "../yazi-codegen", version = "0.4.0" }
yazi-config = { path = "../yazi-config", version = "0.4.0" }
yazi-core = { path = "../yazi-core", version = "0.4.0" }
yazi-dds = { path = "../yazi-dds", version = "0.4.0" }
yazi-fs = { path = "../yazi-fs", version = "0.4.0" }
yazi-macro = { path = "../yazi-macro", version = "0.4.0" }
yazi-plugin = { path = "../yazi-plugin", version = "0.4.0" }
yazi-proxy = { path = "../yazi-proxy", version = "0.4.0" }
yazi-shared = { path = "../yazi-shared", version = "0.4.0" }

# External dependencies
anyhow = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions yazi-fs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yazi-fs"
version = "0.3.3"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = [ "sxyazi <[email protected]>" ]
Expand All @@ -9,8 +9,8 @@ homepage = "https://yazi-rs.github.io"
repository = "https://github.com/sxyazi/yazi"

[dependencies]
yazi-macro = { path = "../yazi-macro", version = "0.3.3" }
yazi-shared = { path = "../yazi-shared", version = "0.3.3" }
yazi-macro = { path = "../yazi-macro", version = "0.4.0" }
yazi-shared = { path = "../yazi-shared", version = "0.4.0" }

# External dependencies
anyhow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion yazi-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yazi-macro"
version = "0.3.3"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = [ "sxyazi <[email protected]>" ]
Expand Down
Loading

0 comments on commit b8b3ab9

Please sign in to comment.