Skip to content

Commit c7e00ec

Browse files
committed
Bump version to 1.1.1
1 parent 88e0ebb commit c7e00ec

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.md

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

3+
## [1.1.1] - 2020-10-05
4+
5+
### Added
6+
7+
- Added `--no-update` option to `lock` command. ([#3034](https://github.com/python-poetry/poetry/pull/3034))
8+
9+
### Fixed
10+
11+
- Fixed resolution of packages with missing required extras. ([#3035](https://github.com/python-poetry/poetry/pull/3035))
12+
- Fixed export of `requirements.txt` dependencies to include development dependencies. ([#3024](https://github.com/python-poetry/poetry/pull/3024))
13+
- Fixed incorrect selection of unsupported binary distribution formats when selecting a package artifact to install. ([#3058](https://github.com/python-poetry/poetry/pull/3058))
14+
- Fixed incorrect use of system executable when building package distributions via `build` command. ([#3056](https://github.com/python-poetry/poetry/pull/3056))
15+
- Fixed errors in `init` command when specifying `--dependency` in non-interactive mode when a `pyproject.toml` file already exists. ([#3076](https://github.com/python-poetry/poetry/pull/3076))
16+
- Fixed incorrect selection of configured source url when a publish repository url configuration with the same name already exists. ([#3047](https://github.com/python-poetry/poetry/pull/3047))
17+
- Fixed dependency resolution issues when the same package is specified in multiple dependency extras. ([#3046](https://github.com/python-poetry/poetry/pull/3046))
18+
319
## [1.1.0] - 2020-10-01
420

521
### Changed
@@ -1023,7 +1039,8 @@ Initial release
10231039

10241040

10251041

1026-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.0...master
1042+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.1...master
1043+
[1.1.1]: https://github.com/python-poetry/poetry/releases/tag/1.1.1
10271044
[1.1.0]: https://github.com/python-poetry/poetry/releases/tag/1.1.0
10281045
[1.1.0rc1]: https://github.com/python-poetry/poetry/releases/tag/1.1.0rc1
10291046
[1.1.0b4]: https://github.com/python-poetry/poetry/releases/tag/1.1.0b4

poetry/__version__.py

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

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

0 commit comments

Comments
 (0)