Skip to content

Commit 548f5c2

Browse files
committed
release: bump version to 2.2.1
1 parent 3afed8d commit 548f5c2

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log
22

33

4+
## [2.2.1] - 2025-09-21
5+
6+
### Fixed
7+
8+
- 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)).
9+
10+
411
## [2.2.0] - 2025-09-14
512

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

805812

806-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/2.2.0...main
813+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/2.2.1...main
814+
[2.2.1]: https://github.com/python-poetry/poetry-core/releases/tag/2.2.1
807815
[2.2.0]: https://github.com/python-poetry/poetry-core/releases/tag/2.2.0
808816
[2.1.3]: https://github.com/python-poetry/poetry-core/releases/tag/2.1.3
809817
[2.1.2]: https://github.com/python-poetry/poetry-core/releases/tag/2.1.2

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "poetry-core"
3-
version = "2.2.0"
3+
version = "2.2.1"
44
description = "Poetry PEP 517 Build Backend"
55
authors = [
66
{ name = "Sébastien Eustace", email = "[email protected]" }

src/poetry/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

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

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

0 commit comments

Comments
 (0)