diff --git a/CHANGELOG.md b/CHANGELOG.md index e3961ac434d..b86e643862c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Change Log +## [1.2.2] - 2022-10-07 + +### Added +- 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)). + +### Changed +- Bump `poetry-core` to [`1.3.1`](https://github.com/python-poetry/poetry-core/releases/tag/1.3.1). +- Bump `poetry-plugin-export` to [`^1.1.1`](https://github.com/python-poetry/poetry-plugin-export/releases/tag/1.1.1). + +### Fixed + +- 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)). +- Fix an issue where versions were escaped wrongly when building the wheel name ([#6476](https://github.com/python-poetry/poetry/pull/6476)). +- 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)). +- Fix an issue where the names of extras were not normalized according to PEP 685 ([#6541](https://github.com/python-poetry/poetry/pull/6541)). +- Fix an issue where sdist names were not normalized ([#6621](https://github.com/python-poetry/poetry/pull/6621)). +- 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)). + +### Docs + +- Rework the README and contribution docs ([#6552](https://github.com/python-poetry/poetry/pull/6552)). +- Fix for inconsistent docs for multiple-constraint dependencies ([#6604](https://github.com/python-poetry/poetry/pull/6604)). +- Rephrase plugin configuration ([#6557](https://github.com/python-poetry/poetry/pull/6557)). +- Add a note about publishable repositories to `publish` ([#6641](https://github.com/python-poetry/poetry/pull/6641)). +- Fix the path for lazy-loaded bash completion ([#6656](https://github.com/python-poetry/poetry/pull/6656)). +- Fix a reference to the invalid option `--require` ([#6672](https://github.com/python-poetry/poetry/pull/6672)). +- Add a PowerShell one-liner to the basic usage section ([#6683](https://github.com/python-poetry/poetry/pull/6683)). + + ## [1.2.1] - 2022-09-16 ### Changed @@ -1544,7 +1573,8 @@ Initial release -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.1...master +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.2...master +[1.2.2]: https://github.com/python-poetry/poetry/releases/tag/1.2.2 [1.2.1]: https://github.com/python-poetry/poetry/releases/tag/1.2.1 [1.2.0]: https://github.com/python-poetry/poetry/releases/tag/1.2.0 [1.2.0rc2]: https://github.com/python-poetry/poetry/releases/tag/1.2.0rc2 diff --git a/pyproject.toml b/pyproject.toml index a764423ad65..c0554416d01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.2.1" +version = "1.2.2" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace ",