chore(release): v0.9.9
This commit is contained in:
parent
52a716fed6
commit
9cdc6aa374
23
CHANGELOG.md
23
CHANGELOG.md
|
|
@ -7,6 +7,22 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.9.9] - 2026-01-31
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Support for Android ARMv7.
|
||||||
|
- Fish: support for v4.1.0+.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Nushell: use sigil operator when calling external commands.
|
||||||
|
- Zsh: support multiple digits in `z +N` and `z -N` dirstack commands.
|
||||||
|
- Bash: avoid downcasting `$PROMPT_COMMAND` array into a string.
|
||||||
|
- Bash: avoid overwriting `$PIPESTATUS`.
|
||||||
|
- POSIX: remove non-POSIX compliant calls to `builtin`.
|
||||||
|
- Fish: clear existing completions when defining `z` command.
|
||||||
|
|
||||||
## [0.9.8] - 2025-05-27
|
## [0.9.8] - 2025-05-27
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
@ -22,7 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Bash: doctor now handles `PROMPT_COMMAND` being an array.
|
- Bash: doctor now handles `$PROMPT_COMMAND` being an array.
|
||||||
- Bash: doctor now handles Visual Studio Code's shell integration.
|
- Bash: doctor now handles Visual Studio Code's shell integration.
|
||||||
- Bash: completions now work with `ble.sh`.
|
- Bash: completions now work with `ble.sh`.
|
||||||
- Nushell: stop ignoring symlinks when `cd`-ing into a directory.
|
- Nushell: stop ignoring symlinks when `cd`-ing into a directory.
|
||||||
|
|
@ -35,7 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Nushell: support for 0.102.0.
|
- Nushell: support for v0.102.0.
|
||||||
- Bash / Zsh: add doctor to diagnose common issues.
|
- Bash / Zsh: add doctor to diagnose common issues.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
@ -302,7 +318,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- `zoxide query --all` for listing deleted directories.
|
- `zoxide query --all` for listing deleted directories.
|
||||||
- Lazy deletion for removed directories that have not been accessed in > 90
|
- Lazy deletion for removed directories that have not been accessed in > 90
|
||||||
days.
|
days.
|
||||||
- Nushell: support for 0.32.0+.
|
- Nushell: support for v0.32.0+.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|
@ -536,6 +552,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- GitHub Actions pipeline to build and upload releases.
|
- GitHub Actions pipeline to build and upload releases.
|
||||||
- Add support for Zsh.
|
- Add support for Zsh.
|
||||||
|
|
||||||
|
[0.9.9]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.8...v0.9.9
|
||||||
[0.9.8]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.7...v0.9.8
|
[0.9.8]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.7...v0.9.8
|
||||||
[0.9.7]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.6...v0.9.7
|
[0.9.7]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.6...v0.9.7
|
||||||
[0.9.6]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.5...v0.9.6
|
[0.9.6]: https://github.com/ajeetdsouza/zoxide/compare/v0.9.5...v0.9.6
|
||||||
|
|
|
||||||
|
|
@ -983,7 +983,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zoxide"
|
name = "zoxide"
|
||||||
version = "0.9.8"
|
version = "0.9.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"askama",
|
"askama",
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ name = "zoxide"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/ajeetdsouza/zoxide"
|
repository = "https://github.com/ajeetdsouza/zoxide"
|
||||||
rust-version = "1.85.0"
|
rust-version = "1.85.0"
|
||||||
version = "0.9.8"
|
version = "0.9.9"
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
maintenance = { status = "actively-developed" }
|
maintenance = { status = "actively-developed" }
|
||||||
|
|
|
||||||
|
|
@ -76,8 +76,9 @@ impl Database {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates a new directory. This will create a duplicate entry if this
|
/// Creates a new directory. This will create a duplicate entry if this
|
||||||
/// directory is already in the database, it is expected that the user either
|
/// directory is already in the database, it is expected that the user
|
||||||
/// does a check before calling this, or calls `dedup()` afterward.
|
/// either does a check before calling this, or calls `dedup()`
|
||||||
|
/// afterward.
|
||||||
pub fn add_unchecked(&mut self, path: impl AsRef<str> + Into<String>, rank: Rank, now: Epoch) {
|
pub fn add_unchecked(&mut self, path: impl AsRef<str> + Into<String>, rank: Rank, now: Epoch) {
|
||||||
self.with_dirs_mut(|dirs| {
|
self.with_dirs_mut(|dirs| {
|
||||||
dirs.push(Dir { path: path.into().into(), rank, last_accessed: now })
|
dirs.push(Dir { path: path.into().into(), rank, last_accessed: now })
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue