Skip to content

Commit f2af3da

Browse files
committed
Bump version to 1.1.8
1 parent 71f55fc commit f2af3da

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed

CHANGELOG.md

+18-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change Log
22

3+
## [1.1.8] - 2021-08-19
4+
5+
### Fixed
6+
7+
- Fixed an error with repository prioritization when specifying secondary repositories. ([#4241](https://github.com/python-poetry/poetry/pull/4241))
8+
- Fixed the detection of the system environment when the setting `virtualenvs.create` is deactivated. ([#4330](https://github.com/python-poetry/poetry/pull/4330), [#4407](https://github.com/python-poetry/poetry/pull/4407))
9+
- Fixed the evaluation of relative path dependencies. ([#4246](https://github.com/python-poetry/poetry/pull/4246))
10+
- Fixed environment detection for Python 3.10 environments. ([#4387](https://github.com/python-poetry/poetry/pull/4387))
11+
- Fixed an error in the evaluation of `in/not in` markers ([python-poetry/poetry-code#189](https://github.com/python-poetry/poetry-core/pull/189))
12+
13+
314
## [1.1.7] - 2021-06-25
415

516
**Note**: Lock files might need to be regenerated for the first fix below to take effect.
@@ -1123,12 +1134,13 @@ Initial release
11231134

11241135

11251136

1126-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.7...master
1127-
[1.1.7]: https://github.com/python-poetry/poetry/compare/1.1.7
1128-
[1.1.6]: https://github.com/python-poetry/poetry/compare/1.1.6
1129-
[1.1.5]: https://github.com/python-poetry/poetry/compare/1.1.5
1130-
[1.1.4]: https://github.com/python-poetry/poetry/compare/1.1.4
1131-
[1.1.3]: https://github.com/python-poetry/poetry/compare/1.1.3
1137+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.8...1.1
1138+
[1.1.8]: https://github.com/python-poetry/poetry/releases/tag/1.1.8
1139+
[1.1.7]: https://github.com/python-poetry/poetry/releases/tag/1.1.7
1140+
[1.1.6]: https://github.com/python-poetry/poetry/releases/tag/1.1.6
1141+
[1.1.5]: https://github.com/python-poetry/poetry/releases/tag/1.1.5
1142+
[1.1.4]: https://github.com/python-poetry/poetry/releases/tag/1.1.4
1143+
[1.1.3]: https://github.com/python-poetry/poetry/releases/tag/1.1.3
11321144
[1.1.2]: https://github.com/python-poetry/poetry/releases/tag/1.1.2
11331145
[1.1.1]: https://github.com/python-poetry/poetry/releases/tag/1.1.1
11341146
[1.1.0]: https://github.com/python-poetry/poetry/releases/tag/1.1.0

poetry/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.7"
1+
__version__ = "1.1.8"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry"
3-
version = "1.1.7"
3+
version = "1.1.8"
44
description = "Python dependency management and packaging made easy."
55
authors = [
66
"Sébastien Eustace <[email protected]>"

0 commit comments

Comments
 (0)