From 68c2cf709328b04f4db3c02ba305e68be37200f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Fri, 10 Jul 2020 10:34:11 +0200 Subject: [PATCH] Bump version to 1.1.0a3 --- CHANGELOG.md | 16 +++++++++++++++- poetry/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35c1a034da6..21b33105031 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## [1.1.0a3] - 2020-07-10 + +### Added + +- New installer which provides a faster and better experience ([#2595](https://github.com/python-poetry/poetry/pull/2595)). + +### Fixed + +- Fixed resolution error when handling duplicate dependencies with environment markers ([#2622](https://github.com/python-poetry/poetry/pull/2622)). +- Fixed erroneous resolution errors when resolving packages to install ([#2625](https://github.com/python-poetry/poetry/pull/2625)). +- Fixed errors when detecting installed editable packages ([#2602](https://github.com/python-poetry/poetry/pull/2602)). + + ## [1.1.0a2] - 2020-06-26 Note that lock files generated with this release are not compatible with previous releases of Poetry. @@ -904,7 +917,8 @@ Initial release -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.0a2...develop +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.0a3...develop +[1.1.0a3]: https://github.com/python-poetry/poetry/releases/tag/1.1.0a3 [1.1.0a2]: https://github.com/python-poetry/poetry/releases/tag/1.1.0a2 [1.1.0a1]: https://github.com/python-poetry/poetry/releases/tag/1.1.0a1 [1.0.9]: https://github.com/python-poetry/poetry/releases/tag/1.0.9 diff --git a/poetry/__version__.py b/poetry/__version__.py index 5903a87689d..170ef9fa1ca 100644 --- a/poetry/__version__.py +++ b/poetry/__version__.py @@ -1 +1 @@ -__version__ = "1.1.0a2" +__version__ = "1.1.0a3" diff --git a/pyproject.toml b/pyproject.toml index a7969afbe64..4fc92753817 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.1.0a2" +version = "1.1.0a3" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace "