summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOrhun Parmaksız <orhunparmaksiz@gmail.com>2021-10-11 00:16:56 +0300
committerOrhun Parmaksız <orhunparmaksiz@gmail.com>2021-10-11 00:16:56 +0300
commite561dba3af16d80ef42695608840373715935f50 (patch)
tree1025ccc3cd73789ef56276f5aa4dfedc74b74234
parente11fdf725b5e0eb61ade35b913c366526bf1a0e4 (diff)
chore: Prepare for the 0.8.1 releasev0.8.1
-rw-r--r--CHANGELOG.md21
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--cliff.toml20
4 files changed, 33 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1cd2731..2f54fea 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,27 @@ 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.1] - 2021-10-10
+### Added
+- Support changing the default file explorer
+
+### Changed
+- Include the manpage of configuration file in binary releases
+- Allow dead code for event handler fields
+- Apply clippy::needless_lifetimes suggestion
+- Improve the Docker build and push workflow
+- Merge the build and test steps in CI workflow
+- Disable the terminal buffer check temporarily
+- Disable the gpg info renderer test
+- Bump dependencies
+
+### Fixed
+- Use implicit reference for state module tests
+- Use a fixed line width for renderer tests
+
+### Removed
+- Remove the hardcoded last character from renderer tests
+
## [0.8.0] - 2021-09-03
### Added
- Add a configuration file ([#5](https://github.com/orhun/gpg-tui/issues/5))
diff --git a/Cargo.lock b/Cargo.lock
index 1b32b34..aac43bd 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -350,7 +350,7 @@ dependencies = [
[[package]]
name = "gpg-tui"
-version = "0.8.0"
+version = "0.8.1"
dependencies = [
"anyhow",
"chrono",
diff --git a/Cargo.toml b/Cargo.toml
index 273c11c..58cf986 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gpg-tui"
-version = "0.8.0"
+version = "0.8.1"
description = "Manage your GnuPG keys with ease!"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
license = "MIT"
diff --git a/cliff.toml b/cliff.toml
index 5206f8f..d0edc48 100644
--- a/cliff.toml
+++ b/cliff.toml
@@ -1,4 +1,4 @@
-# https://github.com/orhun/git-cliff
+# configuration file for git-cliff
[changelog]
header = """
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
"""
body = """
{% if version %}\
- ## [{{ version | replace(from="v", to="") }}] - {{ timestamp | date(format="%Y-%m-%d") }}\
+ ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}\
{% else %}\
## [unreleased]
{% endif %}\
@@ -30,16 +30,16 @@ Initial release.
[git]
conventional_commits = true
commit_parsers = [
- { message = "^*: Add*", group = "Added"},
- { message = "^*: Support*", group = "Added"},
- { message = "^*: Remove*", group = "Removed"},
- { message = "^*: Delete*", group = "Removed"},
- { message = "^test: Add*", group = "Added"},
+ { message = "^.*: Add", group = "Added"},
+ { message = "^.*: Support", group = "Added"},
+ { message = "^.*: Remove", group = "Removed"},
+ { message = "^.*: Delete", group = "Removed"},
+ { message = "^test: Add", group = "Added"},
{ message = "^test: *", group = "Fixed"},
- { message = "^chore: Prepare*", skip = true},
+ { message = "^chore: Prepare", skip = true},
{ message = "^fix: *", group = "Fixed"},
- { message = "^*: Fix*", group = "Fixed"},
- { message = "^*", group = "Changed"},
+ { message = "^.*: Fix", group = "Fixed"},
+ { message = "^.*", group = "Changed"},
]
filter_commits = true
tag_pattern = "v[0-9]*"