Skip to content

Commit 4112bf4

Browse files
committed
chore: bump version to 0.3.1 (#1492)
1 parent c43db9c commit 4112bf4

File tree

16 files changed

+100
-98
lines changed

16 files changed

+100
-98
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ parking_lot = "0.12.3"
2727
ratatui = "0.27.0"
2828
regex = "1.10.6"
2929
scopeguard = "1.2.0"
30-
serde = { version = "1.0.206", features = [ "derive" ] }
31-
serde_json = "1.0.124"
30+
serde = { version = "1.0.207", features = [ "derive" ] }
31+
serde_json = "1.0.125"
3232
shell-words = "1.1.0"
3333
tokio = { version = "1.39.2", features = [ "full" ] }
3434
tokio-stream = "0.1.15"

nix/yazi-unwrapped.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ rustPlatform.buildRustPackage rec {
2929

3030
cargoLock = {
3131
lockFile = "${src}/Cargo.lock";
32-
outputHashes = {
33-
"notify-6.1.1" = "sha256-5Ft2yvRPi2EaErcGBkF/3Xv6K7ijFGbdjmSqI4go/h4=";
34-
};
32+
# outputHashes = {
33+
# "notify-6.1.1" = "sha256-5Ft2yvRPi2EaErcGBkF/3Xv6K7ijFGbdjmSqI4go/h4=";
34+
# };
3535
};
3636

3737
env = {

yazi-adapter/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-adapter"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,8 +9,8 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-config = { path = "../yazi-config", version = "0.3.0" }
13-
yazi-shared = { path = "../yazi-shared", version = "0.3.0" }
12+
yazi-config = { path = "../yazi-config", version = "0.3.1" }
13+
yazi-shared = { path = "../yazi-shared", version = "0.3.1" }
1414

1515
# External dependencies
1616
ansi-to-tui = { workspace = true }

yazi-boot/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-boot"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -10,17 +10,17 @@ repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
1212
regex = { workspace = true }
13-
yazi-adapter = { path = "../yazi-adapter", version = "0.3.0" }
14-
yazi-config = { path = "../yazi-config", version = "0.3.0" }
15-
yazi-shared = { path = "../yazi-shared", version = "0.3.0" }
13+
yazi-adapter = { path = "../yazi-adapter", version = "0.3.1" }
14+
yazi-config = { path = "../yazi-config", version = "0.3.1" }
15+
yazi-shared = { path = "../yazi-shared", version = "0.3.1" }
1616

1717
# External dependencies
1818
clap = { workspace = true }
1919
serde = { workspace = true }
2020

2121
[build-dependencies]
2222
clap = { workspace = true }
23-
clap_complete = "4.5.14"
23+
clap_complete = "4.5.16"
2424
clap_complete_fig = "4.5.2"
2525
clap_complete_nushell = "4.5.3"
2626
vergen-gitcl = { version = "1.0.0", features = [ "build" ] }

yazi-cli/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-cli"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
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-boot = { path = "../yazi-boot", version = "0.3.0" }
13-
yazi-dds = { path = "../yazi-dds", version = "0.3.0" }
14-
yazi-shared = { path = "../yazi-shared", version = "0.3.0" }
12+
yazi-boot = { path = "../yazi-boot", version = "0.3.1" }
13+
yazi-dds = { path = "../yazi-dds", version = "0.3.1" }
14+
yazi-shared = { path = "../yazi-shared", version = "0.3.1" }
1515

1616
# External dependencies
1717
anyhow = { workspace = true }
@@ -23,12 +23,12 @@ tokio = { workspace = true }
2323
toml_edit = "0.22.20"
2424

2525
[build-dependencies]
26-
yazi-shared = { path = "../yazi-shared", version = "0.3.0" }
26+
yazi-shared = { path = "../yazi-shared", version = "0.3.1" }
2727

2828
# External build dependencies
2929
anyhow = { workspace = true }
3030
clap = { workspace = true }
31-
clap_complete = "4.5.14"
31+
clap_complete = "4.5.16"
3232
clap_complete_fig = "4.5.2"
3333
clap_complete_nushell = "4.5.3"
3434
serde_json = { workspace = true }

yazi-config/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-config"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,15 +9,15 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-shared = { path = "../yazi-shared", version = "0.3.0" }
12+
yazi-shared = { path = "../yazi-shared", version = "0.3.1" }
1313

1414
# External dependencies
1515
anyhow = { workspace = true }
1616
arc-swap = { workspace = true }
1717
bitflags = { workspace = true }
1818
crossterm = { workspace = true }
1919
globset = { workspace = true }
20-
indexmap = "2.3.0"
20+
indexmap = "2.4.0"
2121
ratatui = { workspace = true }
2222
regex = { workspace = true }
2323
serde = { workspace = true }

yazi-core/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yazi-core"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55
license = "MIT"
66
authors = [ "sxyazi <[email protected]>" ]
@@ -9,23 +9,23 @@ homepage = "https://yazi-rs.github.io"
99
repository = "https://github.com/sxyazi/yazi"
1010

1111
[dependencies]
12-
yazi-adapter = { path = "../yazi-adapter", version = "0.3.0" }
13-
yazi-boot = { path = "../yazi-boot", version = "0.3.0" }
14-
yazi-config = { path = "../yazi-config", version = "0.3.0" }
15-
yazi-dds = { path = "../yazi-dds", version = "0.3.0" }
16-
yazi-fs = { path = "../yazi-fs", version = "0.3.0" }
17-
yazi-plugin = { path = "../yazi-plugin", version = "0.3.0" }
18-
yazi-proxy = { path = "../yazi-proxy", version = "0.3.0" }
19-
yazi-scheduler = { path = "../yazi-scheduler", version = "0.3.0" }
20-
yazi-shared = { path = "../yazi-shared", version = "0.3.0" }
12+
yazi-adapter = { path = "../yazi-adapter", version = "0.3.1" }
13+
yazi-boot = { path = "../yazi-boot", version = "0.3.1" }
14+
yazi-config = { path = "../yazi-config", version = "0.3.1" }
15+
yazi-dds = { path = "../yazi-dds", version = "0.3.1" }
16+
yazi-fs = { path = "../yazi-fs", version = "0.3.1" }
17+
yazi-plugin = { path = "../yazi-plugin", version = "0.3.1" }
18+
yazi-proxy = { path = "../yazi-proxy", version = "0.3.1" }
19+
yazi-scheduler = { path = "../yazi-scheduler", version = "0.3.1" }
20+
yazi-shared = { path = "../yazi-shared", version = "0.3.1" }
2121

2222
# External dependencies
2323
anyhow = { workspace = true }
2424
bitflags = { workspace = true }
2525
crossterm = { workspace = true }
2626
dirs = { workspace = true }
2727
futures = { workspace = true }
28-
notify = { git = "https://github.com/notify-rs/notify.git", rev = "96dec74316a93bed6eec9db177b233e6e017275e", default-features = false, features = [ "macos_fsevent" ] }
28+
notify-fork = { version = "6.1.1", default-features = false, features = [ "macos_fsevent" ] }
2929
parking_lot = { workspace = true }
3030
ratatui = { workspace = true }
3131
scopeguard = { workspace = true }

0 commit comments

Comments
 (0)