From 59f13c079864b0cdc7aabc1bca3babb2f95f9ba0 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Tue, 15 Oct 2024 15:20:41 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=209.3.1=20=E2=86=92=209.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 19 +++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 843605019..e097b5245 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file. This projec adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/) versioning schema, and the changelog itself conforms to [Keep A Changelog](https://keepachangelog.com/). +## v9.4.0 (2024-10-15) + +### Fix + +- **exclude**: support negative exclude matching child of excluded parent +- parse new answer when `--skip-answered` is used +- validate answers to secret questions +- **updating**: do not recreate deleted paths on update (#1719) +- support Git config without user identity + +### Refactor + +- set default value for `keep_trailing_newline` more idiomatically +- drop support for Python 3.8 + +### Perf + +- **updating**: avoid creating subproject copy + ## v9.3.1 (2024-07-03) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 10fb5b943..2fb505f95 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -168,7 +168,7 @@ annotated_tag = true changelog_incremental = true tag_format = "v$version" update_changelog_on_bump = true -version = "9.3.1" +version = "9.4.0" [build-system] requires = ["poetry-core>=1.7.0", "poetry-dynamic-versioning>=1.1.0"]