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"]