From cbc43e891a8e7ada2c95bd4a2a161facb5156516 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Sat, 21 Oct 2023 00:52:45 +0200 Subject: changelog: get unreleased entries from commit trailers Asking contributors to update the CHANGELOG.md file is causing lots of merge conflicts. Introduce a new workflow where contributors can attach changelog entries in patches via git trailers. Changelog-added: For new features. Changelog-fixed: For bug fixes. Changelog-changed: For behaviour or config format changes. Changelog-deprecated: For deprecation or removal of functionality. If a complete trailer is longer than 72 characters, it can be continued by indenting extra lines with a single space. The trailer text must be valid markdown. Update CONTRIBUTING.md with new guidelines. Update contrib/release.sh to extract these trailers before tagging and create a new section in CHANGELOG.md. Extract unreleased entries in this commit to follow the new workflow. Changelog-added: New `flagged` criteria for `:sort`. Changelog-added: New `:send-keys` command to control embedded terminals. Changelog-added: Account aliases now support fnmatch-style wildcards. Changelog-fixed: `colorize` support for wildcards `?` and `*`. Signed-off-by: Robin Jarry Acked-by: Moritz Poldrack --- CHANGELOG.md | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md index 54229546..dd8e3259 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,18 +3,6 @@ All notable changes to aerc will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## [Unreleased](https://git.sr.ht/~rjarry/aerc/log/master) - -### Added - -- New `flagged` criteria for `:sort` -- New `:send-keys` command to control embedded terminals. -- Account aliases now support fnmatch-style wildcards - -### Fixed - -- `colorize` styles can include wildcards `?` and `*` - ## [0.16.0](https://git.sr.ht/~rjarry/aerc/refs/0.16.0) - 2023-09-27 ### Added -- cgit