Skip to content

Commit 337e90f

Browse files
radoeringneersightedmkniewallner
authored
release: bump version to 1.2.2
Co-authored-by: Bjorn Neergaard <[email protected]> Co-authored-by: Mathieu Kniewallner <[email protected]>
1 parent f1cf0ac commit 337e90f

File tree

3 files changed

+55
-11
lines changed

3 files changed

+55
-11
lines changed

CHANGELOG.md

+45-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,51 @@
11
# Change Log
22

3+
## [1.2.2] - 2022-10-10
4+
5+
### Added
6+
7+
- Add forward compatibility for lock file format 2.0, which will be used by Poetry 1.3 ([#6608](https://github.com/python-poetry/poetry/pull/6608)).
8+
9+
### Changed
10+
11+
- Allow `poetry lock` to re-generate the lock file when invalid or incompatible ([#6753](https://github.com/python-poetry/poetry/pull/6753)).
12+
13+
### Fixed
14+
15+
- Fix an issue where the deprecated JSON API was used to query PyPI for available versions of a package ([#6081](https://github.com/python-poetry/poetry/pull/6081)).
16+
- Fix an issue where versions were escaped wrongly when building the wheel name ([#6476](https://github.com/python-poetry/poetry/pull/6476)).
17+
- Fix an issue where the installation of dependencies failed if pip is a dependency and is updated in parallel to other dependencies ([#6582](https://github.com/python-poetry/poetry/pull/6582)).
18+
- Fix an issue where the names of extras were not normalized according to PEP 685 ([#6541](https://github.com/python-poetry/poetry/pull/6541)).
19+
- Fix an issue where sdist names were not normalized ([#6621](https://github.com/python-poetry/poetry/pull/6621)).
20+
- Fix an issue where invalid constraints, which are ignored, were only reported in a debug message instead of a warning ([#6730](https://github.com/python-poetry/poetry/pull/6730)).
21+
- Fix an issue where `poetry shell` was broken in git bash on Windows ([#6560](https://github.com/python-poetry/poetry/pull/6560)).
22+
23+
### Docs
24+
25+
- Rework the README and contribution docs ([#6552](https://github.com/python-poetry/poetry/pull/6552)).
26+
- Fix for inconsistent docs for multiple-constraint dependencies ([#6604](https://github.com/python-poetry/poetry/pull/6604)).
27+
- Rephrase plugin configuration ([#6557](https://github.com/python-poetry/poetry/pull/6557)).
28+
- Add a note about publishable repositories to `publish` ([#6641](https://github.com/python-poetry/poetry/pull/6641)).
29+
- Fix the path for lazy-loaded bash completion ([#6656](https://github.com/python-poetry/poetry/pull/6656)).
30+
- Fix a reference to the invalid option `--require` ([#6672](https://github.com/python-poetry/poetry/pull/6672)).
31+
- Add a PowerShell one-liner to the basic usage section ([#6683](https://github.com/python-poetry/poetry/pull/6683)).
32+
- Fix the minimum poetry version in the example for plugins ([#6739](https://github.com/python-poetry/poetry/pull/6739)).
33+
34+
### poetry-core ([`1.3.2`](https://github.com/python-poetry/poetry-core/releases/tag/1.3.2))
35+
36+
- Add `3.11` to the list of available Python versions ([#477](https://github.com/python-poetry/poetry-core/pull/477)).
37+
- Fix an issue where caret constraints of pre-releases with a major version of 0 resulted in an empty version range ([#475](https://github.com/python-poetry/poetry-core/pull/475)).
38+
39+
### poetry-plugin-export ([`^1.1.2`](https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.1.2))
40+
41+
- Add support for exporting `constraints.txt` files ([#128](https://github.com/python-poetry/poetry-plugin-export/pull/128)).
42+
- Fix an issue where a relative path passed via `-o` was not interpreted relative to the current working directory ([#130](https://github.com/python-poetry/poetry-plugin-export/pull/130)).
43+
44+
345
## [1.2.1] - 2022-09-16
446

547
### Changed
48+
649
- Bump `poetry-core` to [`1.2.0`](https://github.com/python-poetry/poetry-core/releases/tag/1.2.0).
750
- Bump `poetry-plugin-export` to [`^1.0.7`](https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.0.7).
851

@@ -1544,7 +1587,8 @@ Initial release
15441587

15451588

15461589

1547-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.1...master
1590+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.2...master
1591+
[1.2.2]: https://github.com/python-poetry/poetry/releases/tag/1.2.2
15481592
[1.2.1]: https://github.com/python-poetry/poetry/releases/tag/1.2.1
15491593
[1.2.0]: https://github.com/python-poetry/poetry/releases/tag/1.2.0
15501594
[1.2.0rc2]: https://github.com/python-poetry/poetry/releases/tag/1.2.0rc2

poetry.lock

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

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry"
3-
version = "1.2.1"
3+
version = "1.2.2"
44
description = "Python dependency management and packaging made easy."
55
authors = [
66
"Sébastien Eustace <[email protected]>",
@@ -44,8 +44,8 @@ generate-setup-file = false
4444
[tool.poetry.dependencies]
4545
python = "^3.7"
4646

47-
poetry-core = "1.3.1"
48-
poetry-plugin-export = "^1.1.1"
47+
poetry-core = "1.3.2"
48+
poetry-plugin-export = "^1.1.2"
4949
"backports.cached-property" = { version = "^1.0.2", python = "<3.8" }
5050
cachecontrol = { version = "^0.12.9", extras = ["filecache"] }
5151
cachy = "^0.3.0"

0 commit comments

Comments
 (0)