Skip to content

Commit 59717fa

Browse files
committed
Release v0.7.3
1 parent 05a95fe commit 59717fa

File tree

6 files changed

+26
-67
lines changed

6 files changed

+26
-67
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.7.3] - 2020-08-05
1111

1212
### Added
1313

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

267+
[0.7.3]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.2...v0.7.3
267268
[0.7.2]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.1...v0.7.2
268269
[0.7.1]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.0...v0.7.1
269270
[0.7.0]: https://github.com/ajeetdsouza/zoxide/compare/v0.6.0...v0.7.0

Cargo.lock

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

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zoxide"
3-
version = "0.7.2"
3+
version = "0.7.3"
44
authors = ["Ajeet D'Souza <[email protected]>"]
55
edition = "2018"
66
description = "A smarter cd command for your terminal"
@@ -29,7 +29,7 @@ rand = { version = "0.8.4", features = [
2929

3030
[dev-dependencies]
3131
assert_cmd = "1.0.1"
32-
rstest = "0.10.0"
32+
rstest = "0.11.0"
3333

3434
[build-dependencies]
3535
clap = "3.0.0-beta.2"

README.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -163,13 +163,7 @@ zoxide init fish | source
163163
</details>
164164

165165
<details>
166-
<summary><code>nushell v0.32+</code></summary>
167-
168-
Initialize the `zoxide` script:
169-
170-
```sh
171-
zoxide init nushell --hook prompt | save ~/.zoxide.nu
172-
```
166+
<summary><code>nushell v0.33+</code></summary>
173167

174168
Add this to your configuration (find it by running `config path` in Nushell):
175169

man/zoxide-init.1

-6
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@ Add this to your configuration (usually \fI~/.config/fish/config.fish\fR):
2828
.fi
2929
.TP
3030
.B nushell
31-
Create a Nushell script:
32-
.sp
33-
.nf
34-
\fBzoxide init nushell --hook prompt | save ~/.zoxide.nu\fR
35-
.fi
36-
.sp
3731
Add this to your configuration (find it by running \fBconfig path\fR in
3832
Nushell):
3933
.sp

templates/nushell.txt

+2-5
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,8 @@ alias {{cmd}}i = __zoxide_zi
9595
{%- endmatch %}
9696

9797
{{ section }}
98-
# To initialize zoxide, first create a Nushell script:
99-
#
100-
# zoxide init nushell --hook prompt | save ~/.zoxide.nu
101-
#
102-
# Add this to your configuration (find it by running `config path` in Nushell):
98+
# To initialize zoxide, add this to your configuration (find it by running
99+
# `config path` in Nushell):
103100
#
104101
# prompt = '__zoxide_hook;__zoxide_prompt'
105102
# startup = ['zoxide init nushell --hook prompt | save ~/.zoxide.nu', 'source ~/.zoxide.nu']

0 commit comments

Comments
 (0)