From 988ee85dc648ee3d7e1f272e0db676fc9f8f6948 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Wed, 3 Mar 2021 21:04:52 +0100 Subject: [PATCH] Bump version to 1.1.5 --- CHANGELOG.md | 17 +++++++++++++++-- poetry/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 168944d8f4b..ce625faa7d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## [1.1.5] - 2021-03-03 + +### Fixed + +- Fixed an error in the `export` command when no lock file existed and a verbose flag was passed to the command. ([#3310](https://github.com/python-poetry/poetry/pull/3310)) +- Fixed an error where the `pyproject.toml` was not reverted when using the `add` command. ([#3622](https://github.com/python-poetry/poetry/pull/3622)) +- Fixed errors when using non-HTTPS indices. ([#3622](https://github.com/python-poetry/poetry/pull/3622)) +- Fixed errors when handling simple indices redirection. ([#3622](https://github.com/python-poetry/poetry/pull/3622)) +- Fixed errors when trying to handle newer wheels by using the latest version of `poetry-core` and `packaging`. ([#3677](https://github.com/python-poetry/poetry/pull/3677)) +- Fixed an error when using some versions of `poetry-core` due to an incorrect import . ([#3696](https://github.com/python-poetry/poetry/pull/3696)) + + ## [1.1.4] - 2020-10-23 ### Added @@ -1083,8 +1095,9 @@ Initial release -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.4...master -[1.1.3]: https://github.com/python-poetry/poetry/compare/1.1.4 +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.5...master +[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 [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 diff --git a/poetry/__version__.py b/poetry/__version__.py index c72e3798a10..9b102be7691 100644 --- a/poetry/__version__.py +++ b/poetry/__version__.py @@ -1 +1 @@ -__version__ = "1.1.4" +__version__ = "1.1.5" diff --git a/pyproject.toml b/pyproject.toml index ec025fc8c3b..02f6dabc86f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.1.4" +version = "1.1.5" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace "