From 020fb336e6da11d3a9909f30bd908437a69f13b3 Mon Sep 17 00:00:00 2001 From: finswimmer Date: Sat, 27 Nov 2021 09:23:46 +0100 Subject: [PATCH] Bump version to 1.1.12 --- CHANGELOG.md | 13 +++++++++++-- poetry/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd69c839b92..038966dbc61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## [1.1.12] - 2021-11-27 + +### Fixed + +- Fixed broken caches on Windows due to `Path` starting with a slash ([#4549](https://github.com/python-poetry/poetry/pull/4549)) +- Fixed `JSONDecodeError` when installing packages by updating `cachecontrol` version ([#4831](https://github.com/python-poetry/poetry/pull/4831)) +- Fixed dropped markers in dependency walk ([#4686](https://github.com/python-poetry/poetry/pull/4686)) + + ## [1.1.11] - 2021-10-04 ### Fixed @@ -9,7 +18,6 @@ - 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 @@ -1161,7 +1169,8 @@ Initial release -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.11...1.1 +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.12...1.1 +[1.1.12]: https://github.com/python-poetry/poetry/releases/tag/1.1.12 [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 diff --git a/poetry/__version__.py b/poetry/__version__.py index 8d7046afcc5..004132dfe6d 100644 --- a/poetry/__version__.py +++ b/poetry/__version__.py @@ -1 +1 @@ -__version__ = "1.1.11" +__version__ = "1.1.12" diff --git a/pyproject.toml b/pyproject.toml index 2a41b2074ac..5cf34372b05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.1.11" +version = "1.1.12" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace "