Skip to content

Commit

Permalink
chore: Prepare for the 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Jul 7, 2021
1 parent 888a5d8 commit 94d6fb7
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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.0] - 2021-07-07
### Added
- Add `--select` option (#24)

### Changed
- Extend the FromStr implementation of CopyType
- Rename clipboard module and CopyType struct to 'selection'

## [0.6.2] - 2021-06-27
### Changed
- Bump the Rust version in Dockerfile
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gpg-tui"
version = "0.6.2"
version = "0.7.0"
description = "Manage your GnuPG keys with ease!"
authors = ["Orhun Parmaksız <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -30,7 +30,7 @@ rust-embed = "5.9.0"
shellexpand = "2.1.0"

[dependencies.structopt]
version = "0.3.21"
version = "0.3.22"
default-features = false
features = ["suggestions", "color", "wrap_help"]

Expand Down
4 changes: 2 additions & 2 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ 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 | replace(from="v", to="") }}] - {{ timestamp | date(format="%Y-%m-%d") }}\
{% else %}\
## [unreleased]
{% endif %}\
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
### {{ group | upper_first }}\
{% for commit in commits %}
- {{ commit.message | upper_first }}\
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion man/gpg-tui.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" Manpage for gpg-tui.
.TH GPG-TUI "1" "June 2021" "gpg-tui 0.6.1" "User Commands"
.TH GPG-TUI "1" "July 2021" "gpg-tui 0.7.0" "User Commands"
.SH NAME
gpg-tui \- manage your GnuPG keys with ease

Expand Down

0 comments on commit 94d6fb7

Please sign in to comment.