From 52d5fff660b52b7834dc26a2e92e04a1102607d9 Mon Sep 17 00:00:00 2001 From: Arun Babu Neelicattu Date: Wed, 14 Oct 2020 17:52:08 +0200 Subject: [PATCH] Bump version to 1.1.3 --- CHANGELOG.md | 17 ++++++++++++++++- poetry/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63dbc7e312f..ec01b75abde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## [1.1.3] - 2020-10-14 + +### Changed + +- Python version support deprecation warning is now written to `stderr`. ([#3131](https://github.com/python-poetry/poetry/pull/3131)) + +### Fixed + +- Fixed `KeyError` when `PATH` is not defined in environment variables. ([#3159](https://github.com/python-poetry/poetry/pull/3159)) +- Fixed error when using `config` command in a directory with an existing `pyproject.toml` without any Poetry configuration. ([#3172](https://github.com/python-poetry/poetry/pull/3172)) +- Fixed incorrect inspection of package requirements when same dependency is specified multiple times with unique markers. ([#3147](https://github.com/python-poetry/poetry/pull/3147)) +- Fixed `show` command to use already resolved package metadata. ([#3117](https://github.com/python-poetry/poetry/pull/3117)) +- Fixed multiple issues with `export` command output when using `requirements.txt` format. ([#3119](https://github.com/python-poetry/poetry/pull/3119)) + ## [1.1.2] - 2020-10-06 ### Changed @@ -1049,7 +1063,8 @@ Initial release -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.2...master +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.3...master +[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 [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 72f26f596b0..0b2f79dbba6 100644 --- a/poetry/__version__.py +++ b/poetry/__version__.py @@ -1 +1 @@ -__version__ = "1.1.2" +__version__ = "1.1.3" diff --git a/pyproject.toml b/pyproject.toml index 8c1f137c7c8..7df5cbf81c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.1.2" +version = "1.1.3" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace "