Skip to content

Commit

Permalink
chore: bump version to 0.3.1 (#1492)
Browse files Browse the repository at this point in the history
  • Loading branch information
sxyazi committed Aug 15, 2024
1 parent c43db9c commit 4112bf4
Show file tree
Hide file tree
Showing 16 changed files with 100 additions and 98 deletions.
58 changes: 30 additions & 28 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ parking_lot = "0.12.3"
ratatui = "0.27.0"
regex = "1.10.6"
scopeguard = "1.2.0"
serde = { version = "1.0.206", features = [ "derive" ] }
serde_json = "1.0.124"
serde = { version = "1.0.207", features = [ "derive" ] }
serde_json = "1.0.125"
shell-words = "1.1.0"
tokio = { version = "1.39.2", features = [ "full" ] }
tokio-stream = "0.1.15"
Expand Down
6 changes: 3 additions & 3 deletions nix/yazi-unwrapped.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ rustPlatform.buildRustPackage rec {

cargoLock = {
lockFile = "${src}/Cargo.lock";
outputHashes = {
"notify-6.1.1" = "sha256-5Ft2yvRPi2EaErcGBkF/3Xv6K7ijFGbdjmSqI4go/h4=";
};
# outputHashes = {
# "notify-6.1.1" = "sha256-5Ft2yvRPi2EaErcGBkF/3Xv6K7ijFGbdjmSqI4go/h4=";
# };
};

env = {
Expand Down
6 changes: 3 additions & 3 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.0"
version = "0.3.1"
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-config = { path = "../yazi-config", version = "0.3.0" }
yazi-shared = { path = "../yazi-shared", version = "0.3.0" }
yazi-config = { path = "../yazi-config", version = "0.3.1" }
yazi-shared = { path = "../yazi-shared", version = "0.3.1" }

# External dependencies
ansi-to-tui = { workspace = true }
Expand Down
10 changes: 5 additions & 5 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.0"
version = "0.3.1"
edition = "2021"
license = "MIT"
authors = [ "sxyazi <[email protected]>" ]
Expand All @@ -10,17 +10,17 @@ repository = "https://github.com/sxyazi/yazi"

[dependencies]
regex = { workspace = true }
yazi-adapter = { path = "../yazi-adapter", version = "0.3.0" }
yazi-config = { path = "../yazi-config", version = "0.3.0" }
yazi-shared = { path = "../yazi-shared", version = "0.3.0" }
yazi-adapter = { path = "../yazi-adapter", version = "0.3.1" }
yazi-config = { path = "../yazi-config", version = "0.3.1" }
yazi-shared = { path = "../yazi-shared", version = "0.3.1" }

# External dependencies
clap = { workspace = true }
serde = { workspace = true }

[build-dependencies]
clap = { workspace = true }
clap_complete = "4.5.14"
clap_complete = "4.5.16"
clap_complete_fig = "4.5.2"
clap_complete_nushell = "4.5.3"
vergen-gitcl = { version = "1.0.0", features = [ "build" ] }
12 changes: 6 additions & 6 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.0"
version = "0.3.1"
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-boot = { path = "../yazi-boot", version = "0.3.0" }
yazi-dds = { path = "../yazi-dds", version = "0.3.0" }
yazi-shared = { path = "../yazi-shared", version = "0.3.0" }
yazi-boot = { path = "../yazi-boot", version = "0.3.1" }
yazi-dds = { path = "../yazi-dds", version = "0.3.1" }
yazi-shared = { path = "../yazi-shared", version = "0.3.1" }

# External dependencies
anyhow = { workspace = true }
Expand All @@ -23,12 +23,12 @@ tokio = { workspace = true }
toml_edit = "0.22.20"

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

# External build dependencies
anyhow = { workspace = true }
clap = { workspace = true }
clap_complete = "4.5.14"
clap_complete = "4.5.16"
clap_complete_fig = "4.5.2"
clap_complete_nushell = "4.5.3"
serde_json = { workspace = true }
Expand Down
6 changes: 3 additions & 3 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.0"
version = "0.3.1"
edition = "2021"
license = "MIT"
authors = [ "sxyazi <[email protected]>" ]
Expand All @@ -9,15 +9,15 @@ homepage = "https://yazi-rs.github.io"
repository = "https://github.com/sxyazi/yazi"

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

# External dependencies
anyhow = { workspace = true }
arc-swap = { workspace = true }
bitflags = { workspace = true }
crossterm = { workspace = true }
globset = { workspace = true }
indexmap = "2.3.0"
indexmap = "2.4.0"
ratatui = { workspace = true }
regex = { workspace = true }
serde = { workspace = true }
Expand Down
22 changes: 11 additions & 11 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.0"
version = "0.3.1"
edition = "2021"
license = "MIT"
authors = [ "sxyazi <[email protected]>" ]
Expand All @@ -9,23 +9,23 @@ homepage = "https://yazi-rs.github.io"
repository = "https://github.com/sxyazi/yazi"

[dependencies]
yazi-adapter = { path = "../yazi-adapter", version = "0.3.0" }
yazi-boot = { path = "../yazi-boot", version = "0.3.0" }
yazi-config = { path = "../yazi-config", version = "0.3.0" }
yazi-dds = { path = "../yazi-dds", version = "0.3.0" }
yazi-fs = { path = "../yazi-fs", version = "0.3.0" }
yazi-plugin = { path = "../yazi-plugin", version = "0.3.0" }
yazi-proxy = { path = "../yazi-proxy", version = "0.3.0" }
yazi-scheduler = { path = "../yazi-scheduler", version = "0.3.0" }
yazi-shared = { path = "../yazi-shared", version = "0.3.0" }
yazi-adapter = { path = "../yazi-adapter", version = "0.3.1" }
yazi-boot = { path = "../yazi-boot", version = "0.3.1" }
yazi-config = { path = "../yazi-config", version = "0.3.1" }
yazi-dds = { path = "../yazi-dds", version = "0.3.1" }
yazi-fs = { path = "../yazi-fs", version = "0.3.1" }
yazi-plugin = { path = "../yazi-plugin", version = "0.3.1" }
yazi-proxy = { path = "../yazi-proxy", version = "0.3.1" }
yazi-scheduler = { path = "../yazi-scheduler", version = "0.3.1" }
yazi-shared = { path = "../yazi-shared", version = "0.3.1" }

# External dependencies
anyhow = { workspace = true }
bitflags = { workspace = true }
crossterm = { workspace = true }
dirs = { workspace = true }
futures = { workspace = true }
notify = { git = "https://github.com/notify-rs/notify.git", rev = "96dec74316a93bed6eec9db177b233e6e017275e", default-features = false, features = [ "macos_fsevent" ] }
notify-fork = { version = "6.1.1", default-features = false, features = [ "macos_fsevent" ] }
parking_lot = { workspace = true }
ratatui = { workspace = true }
scopeguard = { workspace = true }
Expand Down
Loading

0 comments on commit 4112bf4

Please sign in to comment.