From f32a5ca2e11a7e23ea495fd34d7138bd0387e1a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Fri, 9 Apr 2021 18:17:12 +0200 Subject: [PATCH] Bump version to 1.1.6 --- CHANGELOG.md | 14 +++++++++++++- poetry/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce625faa7d3..6110c8130db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## [1.1.6] - 2021-04-09 + +### Fixed + +- Fixed export format for path dependencies. ([#3121](https://github.com/python-poetry/poetry/pull/3121)) +- Fixed errors caused by environment modification when executing some commands. ([#3253](https://github.com/python-poetry/poetry/pull/3253)) +- Fixed handling of wheel files with single-digit versions. ([#3338](https://github.com/python-poetry/poetry/pull/3338)) +- Fixed an error when handling single-digit Python markers. ([poetry-core#156](https://github.com/python-poetry/poetry-core/pull/156)) +- Fixed dependency markers not being properly copied when changing the constraint leading to resolution errors. ([poetry-core#163](https://github.com/python-poetry/poetry-core/pull/163)) + + ## [1.1.5] - 2021-03-03 ### Fixed @@ -1095,7 +1106,8 @@ Initial release -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.5...master +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.6...master +[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 diff --git a/poetry/__version__.py b/poetry/__version__.py index 9b102be7691..1436d8fe88a 100644 --- a/poetry/__version__.py +++ b/poetry/__version__.py @@ -1 +1 @@ -__version__ = "1.1.5" +__version__ = "1.1.6" diff --git a/pyproject.toml b/pyproject.toml index 76e0331a9c1..34f02afe7e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.1.5" +version = "1.1.6" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace "