Skip to content

Commit 706863b

Browse files
committed
Release v0.6.0
1 parent 6248f53 commit 706863b

File tree

5 files changed

+47
-23
lines changed

5 files changed

+47
-23
lines changed

.github/workflows/release.yml

+35-5
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ jobs:
99
strategy:
1010
matrix:
1111
target:
12+
- "aarch64-unknown-linux-gnu"
13+
- "aarch64-unknown-linux-musl"
14+
- "armv7-unknown-linux-gnueabihf"
15+
- "armv7-unknown-linux-musleabihf"
1216
- "x86_64-unknown-linux-gnu"
1317
- "x86_64-unknown-linux-musl"
14-
- "armv7-unknown-linux-musleabihf"
1518
steps:
1619
- uses: actions/checkout@v2
1720
- uses: actions-rs/cargo@v1
@@ -77,17 +80,26 @@ jobs:
7780
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7881
with:
7982
upload_url: ${{ steps.create_release.outputs.upload_url }}
80-
asset_path: "zoxide-x86_64-unknown-linux-gnu/zoxide"
81-
asset_name: "zoxide-x86_64-unknown-linux-gnu"
83+
asset_path: "zoxide-aarch64-unknown-linux-gnu/zoxide"
84+
asset_name: "zoxide-aarch64-unknown-linux-gnu"
8285
asset_content_type: application/octet-stream
8386

8487
- uses: actions/upload-release-asset@v1
8588
env:
8689
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8790
with:
8891
upload_url: ${{ steps.create_release.outputs.upload_url }}
89-
asset_path: "zoxide-x86_64-unknown-linux-musl/zoxide"
90-
asset_name: "zoxide-x86_64-unknown-linux-musl"
92+
asset_path: "zoxide-aarch64-unknown-linux-musl/zoxide"
93+
asset_name: "zoxide-aarch64-unknown-linux-musl"
94+
asset_content_type: application/octet-stream
95+
96+
- uses: actions/upload-release-asset@v1
97+
env:
98+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
99+
with:
100+
upload_url: ${{ steps.create_release.outputs.upload_url }}
101+
asset_path: "zoxide-armv7-unknown-linux-gnueabihf/zoxide"
102+
asset_name: "zoxide-armv7-unknown-linux-gnueabihf"
91103
asset_content_type: application/octet-stream
92104

93105
- uses: actions/upload-release-asset@v1
@@ -99,6 +111,24 @@ jobs:
99111
asset_name: "zoxide-armv7-unknown-linux-musleabihf"
100112
asset_content_type: application/octet-stream
101113

114+
- uses: actions/upload-release-asset@v1
115+
env:
116+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
117+
with:
118+
upload_url: ${{ steps.create_release.outputs.upload_url }}
119+
asset_path: "zoxide-x86_64-unknown-linux-gnu/zoxide"
120+
asset_name: "zoxide-x86_64-unknown-linux-gnu"
121+
asset_content_type: application/octet-stream
122+
123+
- uses: actions/upload-release-asset@v1
124+
env:
125+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
126+
with:
127+
upload_url: ${{ steps.create_release.outputs.upload_url }}
128+
asset_path: "zoxide-x86_64-unknown-linux-musl/zoxide"
129+
asset_name: "zoxide-x86_64-unknown-linux-musl"
130+
asset_content_type: application/octet-stream
131+
102132
- uses: actions/upload-release-asset@v1
103133
env:
104134
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

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

8-
## Unreleased
8+
## [0.6.0] - 2021-04-09
99

1010
### Added
1111

@@ -19,15 +19,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
### Fixed
2020

2121
- Removed backtraces on Rust nightly.
22-
- Fixed generated shell code to avoid accidentally using aliased builtins.
22+
- Generated shell code avoids using aliased builtins.
2323
- Handle broken pipe errors gracefully when writing to streams.
2424
- NUL file appearing in working directory on Windows.
2525
- Accidental redefinition of hooks when initialized twice on some shells.
2626
- zoxide unable to find itself on Xonsh shells.
2727

2828
### Removed
2929

30-
- Aliases: `za`, `zq`, `zqi`, `zr`, `zri`.
30+
- Aliases: `za`, `zq`, `zqi`, `zr`, `zri`. These are trivial aliases to zoxide that can easily be defined manually, and aren't very useful to most users.
3131

3232
## [0.5.0] - 2020-10-30
3333

@@ -202,6 +202,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
202202
- GitHub Actions pipeline to build and upload releases.
203203
- Support for the `zsh` shell.
204204

205+
[0.6.0]: https://github.com/ajeetdsouza/zoxide/compare/v0.5.0...v0.6.0
205206
[0.5.0]: https://github.com/ajeetdsouza/zoxide/compare/v0.4.3...v0.5.0
206207
[0.4.3]: https://github.com/ajeetdsouza/zoxide/compare/v0.4.2...v0.4.3
207208
[0.4.2]: https://github.com/ajeetdsouza/zoxide/compare/v0.4.1...v0.4.2

Cargo.lock

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

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zoxide"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Ajeet D'Souza <[email protected]>"]
55
edition = "2018"
66
description = "A faster way to navigate your filesystem"

README.md

-7
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@
55

66
A faster way to navigate your filesystem
77

8-
## Table of contents
9-
10-
- [Introduction](#introduction)
11-
- [Examples](#examples)
12-
- [Getting started](#getting-started)
13-
- [Configuration](#configuration)
14-
158
## Introduction
169

1710
`zoxide` is a blazing fast alternative to `cd`, inspired by

0 commit comments

Comments
 (0)