From eb1c781d579166dfd37ccfedf2d129b4f5f77ffd Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Mon, 27 Nov 2023 10:23:18 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=209.0.1=20=E2=86=92=209.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 16 ++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0331c6949..2e6cc35dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ 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.1.0 (2023-11-27) + +### Feat + +- Conflicts on updates now appear as git merge conflicts, also on VSCode +- **choices**: support questionary checkbox for multiple choices using + `multiselect: true`. + +### Fix + +- mark package as typed +- Normalize paths obtained from Git commands output +- don't crash when update replaces file with symlink (or vice versa) (#1409) +- keep git-ignored files on update (#1373) +- address deprecation warning in `shutil.rmtree(onerror=...)` (#1401) + ## v9.0.1 (2023-10-30) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 3ea3ea7f7..69fe1562c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -137,7 +137,7 @@ annotated_tag = true changelog_incremental = true tag_format = "v$version" update_changelog_on_bump = true -version = "9.0.1" +version = "9.1.0" [build-system] requires = ["poetry-core>=1.7.0", "poetry-dynamic-versioning>=1.1.0"]