From 8b11f9c4c10564947abd0fa73e4d21471049740f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Fri, 18 Sep 2020 18:09:08 +0200 Subject: [PATCH] Bump version to 1.1.0b3 --- CHANGELOG.md | 22 +++++++++++++++++++++- poetry/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3968846d836..97b77575b16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## [1.1.0b3] - 2020-09-18 + +### Changed + +- Improved the error reporting when HTTP error are encountered for legacy repositories ([#2459](https://github.com/python-poetry/poetry/pull/2459)). +- When displaying the name of packages retrieved from remote repositories, the original name will now be used ([#2305](https://github.com/python-poetry/poetry/pull/2305)). +- Failed package downloads will now be retried on connection errors ([#2813](https://github.com/python-poetry/poetry/pull/2813)). + +### Fixed + +- Fixed the detection of the type of installed packages ([#2722](https://github.com/python-poetry/poetry/pull/2722)). +- Fixed deadlocks when installing packages on systems not supporting non-ascii characters ([#2721](https://github.com/python-poetry/poetry/pull/2721)). +- Fixed handling of wildcard constraints for packages with prereleases only ([#2821](https://github.com/python-poetry/poetry/pull/2821)). +- Fixed dependencies of some packages not being discovered by ensuring we use the PEP-516 backend if specified ([#2810](https://github.com/python-poetry/poetry/pull/2810)). +- Fixed recursion errors when retrieving extras ([#2787](https://github.com/python-poetry/poetry/pull/2787)). +- Fixed `PyPI` always being displayed when publishing even for custom repositories ([#2905](https://github.com/python-poetry/poetry/pull/2905)). +- Fixed handling of packages extras when resolving dependencies ([#2887](https://github.com/python-poetry/poetry/pull/2887)). + + ## [1.1.0b2] - 2020-07-24 ### Changed @@ -961,7 +980,8 @@ Initial release -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.0b2...master +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.0b3...master +[1.1.0b3]: https://github.com/python-poetry/poetry/releases/tag/1.1.0b3 [1.1.0b2]: https://github.com/python-poetry/poetry/releases/tag/1.1.0b2 [1.1.0b1]: https://github.com/python-poetry/poetry/releases/tag/1.1.0b1 [1.1.0a3]: https://github.com/python-poetry/poetry/releases/tag/1.1.0a3 diff --git a/poetry/__version__.py b/poetry/__version__.py index f2dccbbcd6f..44868965b4d 100644 --- a/poetry/__version__.py +++ b/poetry/__version__.py @@ -1 +1 @@ -__version__ = "1.1.0b2" +__version__ = "1.1.0b3" diff --git a/pyproject.toml b/pyproject.toml index 9b31778e231..7a343def821 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.1.0b2" +version = "1.1.0b3" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace "