Skip to content

Commit 8b11f9c

Browse files
committed
Bump version to 1.1.0b3
1 parent 64f7429 commit 8b11f9c

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Change Log
22

3+
## [1.1.0b3] - 2020-09-18
4+
5+
### Changed
6+
7+
- Improved the error reporting when HTTP error are encountered for legacy repositories ([#2459](https://github.com/python-poetry/poetry/pull/2459)).
8+
- 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)).
9+
- Failed package downloads will now be retried on connection errors ([#2813](https://github.com/python-poetry/poetry/pull/2813)).
10+
11+
### Fixed
12+
13+
- Fixed the detection of the type of installed packages ([#2722](https://github.com/python-poetry/poetry/pull/2722)).
14+
- Fixed deadlocks when installing packages on systems not supporting non-ascii characters ([#2721](https://github.com/python-poetry/poetry/pull/2721)).
15+
- Fixed handling of wildcard constraints for packages with prereleases only ([#2821](https://github.com/python-poetry/poetry/pull/2821)).
16+
- 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)).
17+
- Fixed recursion errors when retrieving extras ([#2787](https://github.com/python-poetry/poetry/pull/2787)).
18+
- Fixed `PyPI` always being displayed when publishing even for custom repositories ([#2905](https://github.com/python-poetry/poetry/pull/2905)).
19+
- Fixed handling of packages extras when resolving dependencies ([#2887](https://github.com/python-poetry/poetry/pull/2887)).
20+
21+
322
## [1.1.0b2] - 2020-07-24
423

524
### Changed
@@ -961,7 +980,8 @@ Initial release
961980

962981

963982

964-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.0b2...master
983+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.0b3...master
984+
[1.1.0b3]: https://github.com/python-poetry/poetry/releases/tag/1.1.0b3
965985
[1.1.0b2]: https://github.com/python-poetry/poetry/releases/tag/1.1.0b2
966986
[1.1.0b1]: https://github.com/python-poetry/poetry/releases/tag/1.1.0b1
967987
[1.1.0a3]: https://github.com/python-poetry/poetry/releases/tag/1.1.0a3

poetry/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.0b2"
1+
__version__ = "1.1.0b3"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry"
3-
version = "1.1.0b2"
3+
version = "1.1.0b3"
44
description = "Python dependency management and packaging made easy."
55
authors = [
66
"Sébastien Eustace <[email protected]>"

0 commit comments

Comments
 (0)