diff options
author | Orhun Parmaksız <orhunparmaksiz@gmail.com> | 2023-09-10 14:30:36 +0300 |
---|---|---|
committer | Orhun Parmaksız <orhunparmaksiz@gmail.com> | 2023-09-10 14:30:55 +0300 |
commit | 0f6e598f9beb19c0263d6fbc0bbbcb222fc704c4 (patch) | |
tree | f8008e140acd739e0f986f3d23fc57aa4272a5d6 | |
parent | d0b015d4cc0624e1b393f44187710cc8a975f45a (diff) |
chore: Prepare for the 0.10.0 releasev0.10.0
-rw-r--r-- | CHANGELOG.md | 17 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | man/gpg-tui.1 | 2 | ||||
-rw-r--r-- | man/gpg-tui.toml.5 | 2 |
5 files changed, 21 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b825b5..faf0fcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ 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.10.0] - 2023-09-10 +### Added +- Add panic hook for resetting the terminal (#106) +- Add test for argument tilde expansion +- Add instructions for installing on Alpine Linux + +### Changed +- Allow partial configuration file (#116) +- Set MSRV to 1.70.0 +- Enable colors as default +- Integrate better panic handling +- Skip dependency bumps in changelog +- Restore the cursor on panic + +### Fixed +- Update tests for the latest version of ratatui + ## [0.9.6] - 2023-05-25 ### Changed - Upgrade clap from v3 to v4 (#56) @@ -568,7 +568,7 @@ dependencies = [ [[package]] name = "gpg-tui" -version = "0.9.6" +version = "0.10.0" dependencies = [ "anyhow", "better-panic", @@ -1,6 +1,6 @@ [package] name = "gpg-tui" -version = "0.9.6" +version = "0.10.0" description = "Manage your GnuPG keys with ease!" authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"] license = "MIT" diff --git a/man/gpg-tui.1 b/man/gpg-tui.1 index 27f0f63..8400637 100644 --- a/man/gpg-tui.1 +++ b/man/gpg-tui.1 @@ -1,6 +1,6 @@ .\" Manpage for gpg-tui .nh -.TH GPG-TUI "1" "May 2023" "gpg-tui 0.9.6" +.TH GPG-TUI "1" "Sep 2023" "gpg-tui 0.10.0" .SH NAME .PP gpg-tui \- manage your GnuPG keys with ease diff --git a/man/gpg-tui.toml.5 b/man/gpg-tui.toml.5 index cae6774..58e3113 100644 --- a/man/gpg-tui.toml.5 +++ b/man/gpg-tui.toml.5 @@ -1,6 +1,6 @@ .\" Manpage of gpg-tui.toml .nh -.TH GPG-TUI.TOML "5" "May 2023" "gpg-tui 0.9.6" +.TH GPG-TUI.TOML "5" "Sep 2023" "gpg-tui 0.10.0" .SH NAME .PP gpg-tui.toml - configuration file for gpg-tui |