From dac371bf69409289e11846c2425dc52440e9845d Mon Sep 17 00:00:00 2001 From: Mathieu Kniewallner Date: Fri, 8 Jul 2022 15:30:02 +0200 Subject: [PATCH] Release 1.1.14 (#5974) * bump to version 1.1.14 --- CHANGELOG.md | 13 ++++++++++--- poetry/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf75e169851..c54d4b7388b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,17 @@ # Change Log +## [1.1.14] - 2022-07-08 + +## Fixed + +- Fixed an issue where dependencies hashes could not be retrieved when locking due to a breaking change on PyPI JSON API ([#5973](https://github.com/python-poetry/poetry/pull/5973)) + ## [1.1.13] - 2022-02-09 ## Fixed -- Fixed an issue where envs in MSYS2 always reported as broken ([#4942](9https://github.com/python-poetry/poetry/pull/4942)) -- Fixed an issue where conda envs in windows are always reported as broken([#5008](https://github.com/python-poetry/poetry/pull/5008)) +- Fixed an issue where envs in MSYS2 always reported as broken ([#4942](https://github.com/python-poetry/poetry/pull/4942)) +- Fixed an issue where conda envs in windows are always reported as broken ([#5008](https://github.com/python-poetry/poetry/pull/5008)) - Fixed an issue where Poetry doesn't find its own venv on `poetry self update` ([#5048](https://github.com/python-poetry/poetry/pull/5048)) ## [1.1.12] - 2021-11-27 @@ -1177,7 +1183,8 @@ Initial release -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.13...1.1 +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.14...1.1 +[1.1.14]: https://github.com/python-poetry/poetry/releases/tag/1.1.14 [1.1.13]: https://github.com/python-poetry/poetry/releases/tag/1.1.13 [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 diff --git a/poetry/__version__.py b/poetry/__version__.py index 788d9abe34a..69378e28635 100644 --- a/poetry/__version__.py +++ b/poetry/__version__.py @@ -1 +1 @@ -__version__ = "1.1.13" +__version__ = "1.1.14" diff --git a/pyproject.toml b/pyproject.toml index 4fff27d4e0e..dbab3e5cb3f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.1.13" +version = "1.1.14" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace "