summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authororhun <orhun@archlinux.org>2021-09-03 20:47:55 +0300
committerorhun <orhun@archlinux.org>2021-09-03 20:47:55 +0300
commit9d2e6c580e1d4d6b1f94591465cda5ed97da8710 (patch)
tree2c181758bffe21c46cf31329c7db7590bbd872d2
parenta15474a8af220fa799a5b9112c38b78e962a635d (diff)
chore: Prepare for the 0.8.0 releasev0.8.0
-rw-r--r--CHANGELOG.md23
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 25 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d9665fc..1cd2731 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,29 @@ 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.8.0] - 2021-09-03
+### Added
+- Add a configuration file ([#5](https://github.com/orhun/gpg-tui/issues/5))
+- Support global locations for the configuration file
+- Check `GPG_TUI_CONFIG` environment variable for config file
+- Add manpage for the configuration file (`gpg-tui.toml.5`)
+- Add `:style` command for changing styles
+
+### Changed
+- Add `libxkbcommon-dev` as build dependency for CI/CD
+- Rename the shell completions binary
+- Use the correct name for completions binary
+- Update the example shell completions command
+- Update README.md about the configuration file
+- Update CI/CD to build and publish Docker images
+- Bump the Rust version in Dockerfile
+- Bump dependencies
+
+### Fixed
+- Disable tests for the completions binary
+- Build only the main binary in Dockerfile
+- Update the build dependencies for the docker image
+
## [0.7.4] - 2021-08-07
### Added
- Add config for splash screen to check SHA256 hash of assets
diff --git a/Cargo.lock b/Cargo.lock
index aaf6550..8e69f79 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -350,7 +350,7 @@ dependencies = [
[[package]]
name = "gpg-tui"
-version = "0.7.4"
+version = "0.8.0"
dependencies = [
"anyhow",
"chrono",
diff --git a/Cargo.toml b/Cargo.toml
index e6af54f..43a5a8b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gpg-tui"
-version = "0.7.4"
+version = "0.8.0"
description = "Manage your GnuPG keys with ease!"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
license = "MIT"