Skip to content

Commit cbb8e77

Browse files
committedFeb 12, 2024
chore(release): v0.9.3
1 parent f32dc6b commit cbb8e77

File tree

6 files changed

+279
-229
lines changed

6 files changed

+279
-229
lines changed
 

‎CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file.
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10-
## Unreleased
10+
## [0.9.3] - 2024-02-13
1111

1212
### Added
1313

@@ -456,6 +456,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
456456
- GitHub Actions pipeline to build and upload releases.
457457
- Support for zsh.
458458

459+
[0.9.3]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.2...v0.9.3
459460
[0.9.2]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.1...v0.9.2
460461
[0.9.1]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.0...v0.9.1
461462
[0.9.0]: https://github.com/ajeetdsouza/zoxide/compare/v0.8.3...v0.9.0

‎Cargo.lock

+260-218
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ license = "MIT"
99
name = "zoxide"
1010
readme = "README.md"
1111
repository = "https://github.com/ajeetdsouza/zoxide"
12-
rust-version = "1.65"
13-
version = "0.9.2"
12+
rust-version = "1.74.1"
13+
version = "0.9.3"
1414

1515
[badges]
1616
maintenance = { status = "actively-developed" }
@@ -25,17 +25,17 @@ dirs = "5.0.0"
2525
dunce = "1.0.1"
2626
fastrand = "2.0.0"
2727
glob = "0.3.0"
28-
ouroboros = "0.17.2"
28+
ouroboros = "0.18.3"
2929
serde = { version = "1.0.116", features = ["derive"] }
3030

3131
[target.'cfg(unix)'.dependencies]
32-
nix = { version = "0.26.1", default-features = false, features = [
32+
nix = { version = "0.27.1", default-features = false, features = [
3333
"fs",
3434
"user",
3535
] }
3636

3737
[target.'cfg(windows)'.dependencies]
38-
which = "4.2.5"
38+
which = "6.0.0"
3939

4040
[build-dependencies]
4141
clap = { version = "4.3.0", features = ["derive"] }

‎contrib/completions/zoxide.bash

+9-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎contrib/completions/zoxide.fish

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎shell.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ let
44
overlays = [ rust ];
55
};
66
rust = import (builtins.fetchTarball
7-
"https://github.com/oxalica/rust-overlay/archive/a61fcd9910229d097ffef92b5a2440065e3b64d5.tar.gz");
7+
"https://github.com/oxalica/rust-overlay/archive/e6679d2ff9136d00b3a7168d2bf1dff9e84c5758.tar.gz");
88

99
rust-nightly =
1010
pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.minimal);

0 commit comments

Comments
 (0)
Please sign in to comment.