Skip to content

Commit fe59f68

Browse files
authored
Merge pull request #4593 from python-poetry/release-1.1.11
Release 1.1.11
2 parents ee79089 + 10d5559 commit fe59f68

File tree

6 files changed

+61
-41
lines changed

6 files changed

+61
-41
lines changed

CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## [1.1.11] - 2021-10-04
4+
5+
### Fixed
6+
7+
- Fixed errors when installing packages on Python 3.10. ([#4592](https://github.com/python-poetry/poetry/pull/4592))
8+
- Fixed an issue where the wrong `git` executable could be used on Windows. ([python-poetry/poetry-core#213](https://github.com/python-poetry/poetry-core/pull/213))
9+
- Fixed an issue where the Python 3.10 classifier was not automatically added. ([python-poetry/poetry-core#215](https://github.com/python-poetry/poetry-core/pull/215))
10+
11+
12+
313
## [1.1.10] - 2021-09-21
414

515
### Fixed
@@ -1151,7 +1161,8 @@ Initial release
11511161

11521162

11531163

1154-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.10...1.1
1164+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.11...1.1
1165+
[1.1.11]: https://github.com/python-poetry/poetry/releases/tag/1.1.11
11551166
[1.1.10]: https://github.com/python-poetry/poetry/releases/tag/1.1.10
11561167
[1.1.9]: https://github.com/python-poetry/poetry/releases/tag/1.1.9
11571168
[1.1.8]: https://github.com/python-poetry/poetry/releases/tag/1.1.8

poetry.lock

+44-37
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

poetry/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.10"
1+
__version__ = "1.1.11"

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry"
3-
version = "1.1.10"
3+
version = "1.1.11"
44
description = "Python dependency management and packaging made easy."
55
authors = [
66
"Sébastien Eustace <[email protected]>"
@@ -24,7 +24,7 @@ classifiers = [
2424
[tool.poetry.dependencies]
2525
python = "~2.7 || ^3.5"
2626

27-
poetry-core = "~1.0.6"
27+
poetry-core = "~1.0.7"
2828
cleo = "^0.8.1"
2929
clikit = "^0.6.2"
3030
crashtest = { version = "^0.3.0", python = "^3.6" }

tests/masonry/builders/test_editable_builder.py

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ def test_builder_installs_proper_files_for_standard_packages(simple_poetry, tmp_
111111
Classifier: Programming Language :: Python :: 2
112112
Classifier: Programming Language :: Python :: 2.7
113113
Classifier: Programming Language :: Python :: 3
114+
Classifier: Programming Language :: Python :: 3.10
114115
Classifier: Programming Language :: Python :: 3.4
115116
Classifier: Programming Language :: Python :: 3.5
116117
Classifier: Programming Language :: Python :: 3.6

tests/test_factory.py

+1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ def test_create_poetry():
106106
"Programming Language :: Python :: 2",
107107
"Programming Language :: Python :: 2.7",
108108
"Programming Language :: Python :: 3",
109+
"Programming Language :: Python :: 3.10",
109110
"Programming Language :: Python :: 3.6",
110111
"Programming Language :: Python :: 3.7",
111112
"Programming Language :: Python :: 3.8",

0 commit comments

Comments
 (0)