From bb6d253b39f12d295200c4e41826a4dd43180c86 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Thu, 27 Aug 2026 15:25:11 +0100 Subject: [PATCH 1/3] Update CHANGELOG.md for 2.1.0 (planned) --- CHANGELOG.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d047a9f..56fe8ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,16 @@ # Changelog -## 2.2.0 +## 2.1.0 * Add support for Python 3.15 by @hugovk in https://github.com/python/blurb/pull/74 +* Drop support for Python 3.9 by @hugovk in https://github.com/python/blurb/pull/68 * Keep sections in importance order by @hugovk in https://github.com/python/blurb/pull/75 - -## 2.1.0 - -- Add the `-i` / `--issue` option to the 'blurb add' command. +* Add the `-i` / `--issue` option to the 'blurb add' command. This lets you pre-fill the `gh-issue` field in the template. -- Add the `-s` / `--section` option to the 'blurb add' command. +* Add the `-s` / `--section` option to the 'blurb add' command. This lets you pre-fill the `section` field in the template. +* Use `argparse` for the CLI by @hugovk in https://github.com/python/blurb/pull/83 +* Fix a typo in the new entry template by @StanFromIreland in https://github.com/python/blurb/pull/84 ## 2.0.0 From 9ff99283cb5b78d7c51c7ae357d499a5b42722b2 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Thu, 27 Aug 2026 15:27:31 +0100 Subject: [PATCH 2/3] Capitalise some words in RELEASING.md --- RELEASING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASING.md b/RELEASING.md index e126bd2..1dbed0b 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -1,9 +1,9 @@ # Release Checklist -- [ ] check tests pass on [GitHub Actions](https://github.com/python/blurb/actions) +- [ ] Check tests pass on [GitHub Actions](https://github.com/python/blurb/actions) [![GitHub Actions status](https://github.com/python/blurb/actions/workflows/test.yml/badge.svg)](https://github.com/python/blurb/actions/workflows/test.yml) -- [ ] Update [changelog](https://github.com/python/blurb/blob/main/CHANGELOG.md) +- [ ] Update the [changelog](https://github.com/python/blurb/blob/main/CHANGELOG.md) - [ ] Go to the [Releases page](https://github.com/python/blurb/releases) and From 71ca90f7f5720b265edf951c4f0f155c553a3887 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Thu, 27 Aug 2026 16:27:30 +0100 Subject: [PATCH 3/3] Exclude `dependabot[bot]` from release --- .github/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/release.yml b/.github/release.yml index 9d1e098..0e162aa 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -1,5 +1,5 @@ changelog: exclude: authors: - - dependabot + - dependabot[bot] - pre-commit-ci