From 10d555984485088cf5d55979c1b235286de8e456 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Mon, 4 Oct 2021 19:30:03 +0200 Subject: [PATCH] Bump version to 1.1.11 --- CHANGELOG.md | 13 ++++++++++++- poetry/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d073c58979..cd69c839b92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## [1.1.11] - 2021-10-04 + +### Fixed + +- Fixed errors when installing packages on Python 3.10. ([#4592](https://github.com/python-poetry/poetry/pull/4592)) +- Fixed an issue where the wrong `git` executable could be used on Windows. ([python-poetry/poetry-core#213](https://github.com/python-poetry/poetry-core/pull/213)) +- Fixed an issue where the Python 3.10 classifier was not automatically added. ([python-poetry/poetry-core#215](https://github.com/python-poetry/poetry-core/pull/215)) + + + ## [1.1.10] - 2021-09-21 ### Fixed @@ -1151,7 +1161,8 @@ Initial release -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.10...1.1 +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.11...1.1 +[1.1.11]: https://github.com/python-poetry/poetry/releases/tag/1.1.11 [1.1.10]: https://github.com/python-poetry/poetry/releases/tag/1.1.10 [1.1.9]: https://github.com/python-poetry/poetry/releases/tag/1.1.9 [1.1.8]: https://github.com/python-poetry/poetry/releases/tag/1.1.8 diff --git a/poetry/__version__.py b/poetry/__version__.py index 85edbea80db..8d7046afcc5 100644 --- a/poetry/__version__.py +++ b/poetry/__version__.py @@ -1 +1 @@ -__version__ = "1.1.10" +__version__ = "1.1.11" diff --git a/pyproject.toml b/pyproject.toml index df2d5b00eb5..1f3abae07e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.1.10" +version = "1.1.11" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace "