Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log


## [2.2.1] - 2025-09-21

### Fixed

- Fix an issue where it was not possible to declare a PEP 735 dependency group as optional ([#888](https://github.com/python-poetry/poetry-core/pull/888)).


## [2.2.0] - 2025-09-14

### Added
Expand Down Expand Up @@ -803,7 +810,8 @@ No changes.
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).


[Unreleased]: https://github.com/python-poetry/poetry-core/compare/2.2.0...main
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/2.2.1...main
[2.2.1]: https://github.com/python-poetry/poetry-core/releases/tag/2.2.1
[2.2.0]: https://github.com/python-poetry/poetry-core/releases/tag/2.2.0
[2.1.3]: https://github.com/python-poetry/poetry-core/releases/tag/2.1.3
[2.1.2]: https://github.com/python-poetry/poetry-core/releases/tag/2.1.2
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "poetry-core"
version = "2.2.0"
version = "2.2.1"
description = "Poetry PEP 517 Build Backend"
authors = [
{ name = "Sébastien Eustace", email = "[email protected]" }
Expand Down
2 changes: 1 addition & 1 deletion src/poetry/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# this cannot presently be replaced with importlib.metadata.version as when building
# itself, poetry-core is not available as an installed distribution.
__version__ = "2.2.0"
__version__ = "2.2.1"

__vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()

Expand Down
Loading