Skip to content

Commit f8c3684

Browse files
committed
release: bump version to 2.2.0
1 parent 614a980 commit f8c3684

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

CHANGELOG.md

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

33

4+
## [2.2.0] - 2025-09-14
5+
6+
### Added
7+
8+
- Add support for nesting dependency groups ([#837](https://github.com/python-poetry/poetry-core/pull/837)).
9+
- Add support for PEP 735 dependency groups ([#823](https://github.com/python-poetry/poetry-core/pull/823)).
10+
- Add support for PEP 639 license clarity ([#870](https://github.com/python-poetry/poetry-core/pull/870)).
11+
- Add support for Python 3.14 ([#877](https://github.com/python-poetry/poetry-core/pull/877),
12+
[#884](https://github.com/python-poetry/poetry-core/pull/884)).
13+
14+
### Changed
15+
16+
- Normalize dependency group names ([#868](https://github.com/python-poetry/poetry-core/pull/868)).
17+
- Deprecate table values and values that are not valid SPDX expressions for `[project.license]` ([#870](https://github.com/python-poetry/poetry-core/pull/870)).
18+
- Update list of supported licenses ([#872](https://github.com/python-poetry/poetry-core/pull/872)).
19+
20+
### Fixed
21+
22+
- Fix an issue where explicitly included files that are in `.gitignore` were not included in the distribution ([#874](https://github.com/python-poetry/poetry-core/pull/874)).
23+
- Fix an issue where marker operations could result in invalid markers ([#875](https://github.com/python-poetry/poetry-core/pull/875)).
24+
25+
426
## [2.1.3] - 2025-05-04
527

628
### Changed
@@ -781,7 +803,8 @@ No changes.
781803
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
782804

783805

784-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/2.1.3...main
806+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/2.2.0...main
807+
[2.2.0]: https://github.com/python-poetry/poetry-core/releases/tag/2.2.0
785808
[2.1.3]: https://github.com/python-poetry/poetry-core/releases/tag/2.1.3
786809
[2.1.2]: https://github.com/python-poetry/poetry-core/releases/tag/2.1.2
787810
[2.1.1]: https://github.com/python-poetry/poetry-core/releases/tag/2.1.1

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.1.3"
3+
version = "2.2.0"
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.1.3"
10+
__version__ = "2.2.0"
1111

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

0 commit comments

Comments
 (0)