From f3cbcb446f53f846cbd72dc2756f7740e48fe1bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Fri, 25 Jun 2021 16:18:10 +0200 Subject: [PATCH] Bump version to 1.1.7 --- CHANGELOG.md | 18 +++++++++++++++++- poetry/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b4fff579ad..2090b589250 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## [1.1.7] - 2012-06-25 + +**Note**: Lock files might need to be regenerated for the first fix below to take effect. +You can use `poetry lock` to do so **without** the `--no-update` option. + +### Changed + +- This release is compatible with the `install-poetry.py` installation script to ease the migration path from `1.1` releases to `1.2` releases. ([#4192](https://github.com/python-poetry/poetry/pull/4192)) + +### Fixed + +- Fixed an issue where transitive dependencies of directory or VCS dependencies were not installed or otherwise removed. ([#4203](https://github.com/python-poetry/poetry/pull/4203)) +- Fixed an issue where the combination of the `--tree` and `--no-dev` options for the show command was still displaying development dependencies. ([#3992](https://github.com/python-poetry/poetry/pull/3992)) + + ## [1.1.6] - 2021-04-14 ### Fixed @@ -1108,7 +1123,8 @@ Initial release -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.6...master +[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 diff --git a/poetry/__version__.py b/poetry/__version__.py index 1436d8fe88a..bf7882637e0 100644 --- a/poetry/__version__.py +++ b/poetry/__version__.py @@ -1 +1 @@ -__version__ = "1.1.6" +__version__ = "1.1.7" diff --git a/pyproject.toml b/pyproject.toml index 34f02afe7e6..312ecee078e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.1.6" +version = "1.1.7" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace "