summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAjeet D'Souza <98ajeet@gmail.com>2022-04-23 06:39:14 +0530
committerAjeet D'Souza <98ajeet@gmail.com>2022-04-23 06:39:14 +0530
commit96a43e9c79da048cbab8f7114a8e08d1cd7ec867 (patch)
tree889ec5f1881e323668b2335f425441923bd73e2f
parent612f264dd413add537eb9dd43a1a3dfab4580715 (diff)
Release v0.8.1v0.8.1
-rw-r--r--.github/workflows/release.yml2
-rw-r--r--CHANGELOG.md3
-rw-r--r--Cargo.lock17
-rw-r--r--Cargo.toml4
4 files changed, 11 insertions, 15 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 2947bfc..e5fc83b 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -9,6 +9,8 @@ on:
jobs:
release:
name: ${{ matrix.target }}
+ permissions:
+ contents: write
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5431d99..bd2f8cd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,7 +7,7 @@ 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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
-## Unreleased
+## [0.8.1] - 2021-04-23
### Changed
@@ -374,6 +374,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- GitHub Actions pipeline to build and upload releases.
- Support for zsh.
+[0.8.1]: https://github.com/ajeetdsouza/zoxide/compare/v0.8.0...v0.8.1
[0.8.0]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.9...v0.8.0
[0.7.9]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.8...v0.7.9
[0.7.8]: https://github.com/ajeetdsouza/zoxide/compare/v0.7.7...v0.7.8
diff --git a/Cargo.lock b/Cargo.lock
index 35e85a1..6623e9f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -118,12 +118,6 @@ dependencies = [
]
[[package]]
-name = "cc"
-version = "1.0.73"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
-
-[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -131,9 +125,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
-version = "3.1.10"
+version = "3.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3124f3f75ce09e22d1410043e1e24f2ecc44fad3afe4f08408f1f7663d68da2b"
+checksum = "7c167e37342afc5f33fd87bbc870cedd020d2a6dffa05d45ccd9241fbdd146db"
dependencies = [
"atty",
"bitflags",
@@ -413,12 +407,11 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "nix"
-version = "0.23.1"
+version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6"
+checksum = "8f17df307904acd05aa8e32e97bb20f2a0df1728bbc2d771ae8f9a90463441e9"
dependencies = [
"bitflags",
- "cc",
"cfg-if",
"libc",
"memoffset",
@@ -830,7 +823,7 @@ dependencies = [
[[package]]
name = "zoxide"
-version = "0.8.0"
+version = "0.8.1"
dependencies = [
"anyhow",
"askama",
diff --git a/Cargo.toml b/Cargo.toml
index 27d729f..1edb138 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,7 +8,7 @@ license = "MIT"
name = "zoxide"
repository = "https://github.com/ajeetdsouza/zoxide"
rust-version = "1.59"
-version = "0.8.0"
+version = "0.8.1"
[badges]
maintenance = { status = "actively-developed" }
@@ -29,7 +29,7 @@ ordered-float = "2.0.0"
serde = { version = "1.0.116", features = ["derive"] }
[target.'cfg(unix)'.dependencies]
-nix = "0.23.1"
+nix = "0.24.1"
[build-dependencies]
clap = { version = "3.1.0", features = ["derive"] }