Skip to content

Commit 8151647

Browse files
committed
Bump version to 1.1.0b1
1 parent 3f20e03 commit 8151647

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

CHANGELOG.md

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

3+
## [1.1.0b1] - 2020-07-24
4+
5+
### Changed
6+
7+
- Virtual environments will now exclusively be built with `virtualenv` ([#2666](https://github.com/python-poetry/poetry/pull/2666)).
8+
- Support for Python 2.7 and 3.5 is now officially deprecated and a warning message will be displayed ([#2683](https://github.com/python-poetry/poetry/pull/2683)).
9+
- Improved metadata inspection of packages by using the PEP-517 build system ([#2632](https://github.com/python-poetry/poetry/pull/2632)).
10+
11+
### Fixed
12+
13+
- Fixed parallel tasks not being cancelled when the installation is interrupted or has failed ([#2656](https://github.com/python-poetry/poetry/pull/2656)).
14+
- Fixed an error where the editable builder would not expose all packages ([#2664](https://github.com/python-poetry/poetry/pull/2656)).
15+
- Fixed an error for Python 2.7 when a file could not be downloaded in the installer ([#2709](https://github.com/python-poetry/poetry/pull/2709)).
16+
- Fixed the lock file `content-hash` value not being updated when using the `add` and `remove` commands ([#2710](https://github.com/python-poetry/poetry/pull/2710)).
17+
- Fixed incorrect resolution errors being raised for packages with python requirements ([#2712](https://github.com/python-poetry/poetry/pull/2712)).
18+
- Fixed an error causing the build log messages to no longer be displayed ([#2715](https://github.com/python-poetry/poetry/pull/2715)).
19+
20+
321
## [1.0.10] - 2020-07-21
422

523
### Changed
@@ -932,7 +950,8 @@ Initial release
932950

933951

934952

935-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.0a3...master
953+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.0b1...master
954+
[1.1.0b1]: https://github.com/python-poetry/poetry/releases/tag/1.1.0ab1
936955
[1.1.0a3]: https://github.com/python-poetry/poetry/releases/tag/1.1.0a3
937956
[1.1.0a2]: https://github.com/python-poetry/poetry/releases/tag/1.1.0a2
938957
[1.1.0a1]: https://github.com/python-poetry/poetry/releases/tag/1.1.0a1

poetry/__version__.py

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

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.0a3"
3+
version = "1.1.0b1"
44
description = "Python dependency management and packaging made easy."
55
authors = [
66
"Sébastien Eustace <[email protected]>"

0 commit comments

Comments
 (0)