summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authororhun <orhun@archlinux.org>2021-07-17 23:13:21 +0300
committerorhun <orhun@archlinux.org>2021-07-17 23:13:21 +0300
commitd04c2f667127287dd514479e722d83f8c8dd56ef (patch)
tree4e33024d00bd3918596202fb4870d726290ca249
parent2dcd41fd23a615afd6e28e5c971400578569fc48 (diff)
chore: Prepare for the 0.7.1 release
-rw-r--r--CHANGELOG.md10
-rw-r--r--Cargo.lock6
-rw-r--r--Cargo.toml4
3 files changed, 15 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 76cd4f6..aafd641 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,16 @@ 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).
+## [0.7.1] - 2021-07-17
+### Added
+- Add an example for selection mode to README.md
+
+### Changed
+- Update README.md about `libxkbcommon-dev` dependency (#26)
+
+### Fixed
+- Run the terminal on stderr and use stdout for output (#27)
+
## [0.7.0] - 2021-07-07
### Added
- Add `--select` option (#24)
diff --git a/Cargo.lock b/Cargo.lock
index d55624b..ae43d08 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -22,9 +22,9 @@ dependencies = [
[[package]]
name = "anyhow"
-version = "1.0.41"
+version = "1.0.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "15af2628f6890fe2609a3b91bef4c83450512802e59489f9c1cb1fa5df064a61"
+checksum = "595d3cfa7a60d4555cb5067b99f07142a08ea778de5cf993f7b75c7d8fabc486"
[[package]]
name = "atty"
@@ -316,7 +316,7 @@ dependencies = [
[[package]]
name = "gpg-tui"
-version = "0.7.0"
+version = "0.7.1"
dependencies = [
"anyhow",
"chrono",
diff --git a/Cargo.toml b/Cargo.toml
index ed45aba..7b58cd2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gpg-tui"
-version = "0.7.0"
+version = "0.7.1"
description = "Manage your GnuPG keys with ease!"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
license = "MIT"
@@ -21,7 +21,7 @@ gpg-tests = []
[dependencies]
gpgme = "0.9.2"
crossterm = "0.20.0"
-anyhow = "1.0.41"
+anyhow = "1.0.42"
chrono = "0.4.19"
unicode-width = "0.1.8"
copypasta-ext = "0.3.4"