Skip to content

Commit 539d7f7

Browse files
committed
Bump version to 1.1.0
1 parent 9b26d6f commit 539d7f7

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.0] - 2020-10-01
4+
5+
### Changed
6+
7+
- The `init` command will now use existing `pyproject.toml` if possible ([#2448](https://github.com/python-poetry/poetry/pull/2448)).
8+
- Error messages when metadata information retrieval fails have been improved ([#2997](https://github.com/python-poetry/poetry/pull/2997)).
9+
10+
### Fixed
11+
12+
- Fixed parsing of version constraint for `rc` prereleases ([#2978](https://github.com/python-poetry/poetry/pull/2978)).
13+
- Fixed how some metadata information are extracted from `setup.cfg` files ([#2957](https://github.com/python-poetry/poetry/pull/2957)).
14+
- Fixed return codes returned by the executor ([#2981](https://github.com/python-poetry/poetry/pull/2981)).
15+
- Fixed whitespaces not being accepted for the list of extras when adding packages ([#2985](https://github.com/python-poetry/poetry/pull/2985)).
16+
- Fixed repositories specified in the `pyproject.toml` file not being taken into account for authentication when downloading packages ([#2990](https://github.com/python-poetry/poetry/pull/2990)).
17+
- Fixed permission errors when installing the root project if the `site-packages` directory is not writeable ([#3002](https://github.com/python-poetry/poetry/pull/3002)).
18+
- Fixed environment marker propagation when exporting to the `requirements.txt` format ([#3002](https://github.com/python-poetry/poetry/pull/3002)).
19+
- Fixed errors when paths in run command contained spaces ([#3015](https://github.com/python-poetry/poetry/pull/3015)).
20+
21+
322
## [1.1.0rc1] - 2020-09-25
423

524
### Changed
@@ -1004,7 +1023,8 @@ Initial release
10041023

10051024

10061025

1007-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.0rc1...master
1026+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.0...master
1027+
[1.1.0]: https://github.com/python-poetry/poetry/releases/tag/1.1.0
10081028
[1.1.0rc1]: https://github.com/python-poetry/poetry/releases/tag/1.1.0rc1
10091029
[1.1.0b4]: https://github.com/python-poetry/poetry/releases/tag/1.1.0b4
10101030
[1.1.0b3]: https://github.com/python-poetry/poetry/releases/tag/1.1.0b3

poetry/__version__.py

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

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

0 commit comments

Comments
 (0)