From f2af3da5f429958136bc2d397334dadb4bbf201c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Thu, 19 Aug 2021 10:29:58 +0200 Subject: [PATCH] Bump version to 1.1.8 --- CHANGELOG.md | 24 ++++++++++++++++++------ poetry/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 20 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa159212486..c72d9bd16dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## [1.1.8] - 2021-08-19 + +### Fixed + +- Fixed an error with repository prioritization when specifying secondary repositories. ([#4241](https://github.com/python-poetry/poetry/pull/4241)) +- Fixed the detection of the system environment when the setting `virtualenvs.create` is deactivated. ([#4330](https://github.com/python-poetry/poetry/pull/4330), [#4407](https://github.com/python-poetry/poetry/pull/4407)) +- Fixed the evaluation of relative path dependencies. ([#4246](https://github.com/python-poetry/poetry/pull/4246)) +- Fixed environment detection for Python 3.10 environments. ([#4387](https://github.com/python-poetry/poetry/pull/4387)) +- Fixed an error in the evaluation of `in/not in` markers ([python-poetry/poetry-code#189](https://github.com/python-poetry/poetry-core/pull/189)) + + ## [1.1.7] - 2021-06-25 **Note**: Lock files might need to be regenerated for the first fix below to take effect. @@ -1123,12 +1134,13 @@ Initial release -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.7...master -[1.1.7]: https://github.com/python-poetry/poetry/compare/1.1.7 -[1.1.6]: https://github.com/python-poetry/poetry/compare/1.1.6 -[1.1.5]: https://github.com/python-poetry/poetry/compare/1.1.5 -[1.1.4]: https://github.com/python-poetry/poetry/compare/1.1.4 -[1.1.3]: https://github.com/python-poetry/poetry/compare/1.1.3 +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.8...1.1 +[1.1.8]: https://github.com/python-poetry/poetry/releases/tag/1.1.8 +[1.1.7]: https://github.com/python-poetry/poetry/releases/tag/1.1.7 +[1.1.6]: https://github.com/python-poetry/poetry/releases/tag/1.1.6 +[1.1.5]: https://github.com/python-poetry/poetry/releases/tag/1.1.5 +[1.1.4]: https://github.com/python-poetry/poetry/releases/tag/1.1.4 +[1.1.3]: https://github.com/python-poetry/poetry/releases/tag/1.1.3 [1.1.2]: https://github.com/python-poetry/poetry/releases/tag/1.1.2 [1.1.1]: https://github.com/python-poetry/poetry/releases/tag/1.1.1 [1.1.0]: https://github.com/python-poetry/poetry/releases/tag/1.1.0 diff --git a/poetry/__version__.py b/poetry/__version__.py index bf7882637e0..3d30a5ffbec 100644 --- a/poetry/__version__.py +++ b/poetry/__version__.py @@ -1 +1 @@ -__version__ = "1.1.7" +__version__ = "1.1.8" diff --git a/pyproject.toml b/pyproject.toml index a190f07c691..eb55fd12270 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.1.7" +version = "1.1.8" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace "