Skip to content

Commit 4191d01

Browse files
committed
relase: bump version to 2.3.0
1 parent 2bc56e4 commit 4191d01

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.3.0] - 2026-01-18
5+
6+
### Added
7+
8+
- Add (optional) `size` and `upload_time` to `Link` and `Package.files` ([#905](https://github.com/python-poetry/poetry-core/pull/905)).
9+
10+
### Changed
11+
12+
- Drop support for Python 3.9 ([#897](https://github.com/python-poetry/poetry-core/pull/897)).
13+
- Normalize versions ([#893](https://github.com/python-poetry/poetry-core/pull/893)).
14+
- Remove helper function to create temporary directories ([#337](https://github.com/python-poetry/poetry-core/pull/337)).
15+
- Improve type hint of `Package.files` ([#904](https://github.com/python-poetry/poetry-core/pull/904)).
16+
- Update list of supported licenses ([#890](https://github.com/python-poetry/poetry-core/pull/890),
17+
[#895](https://github.com/python-poetry/poetry-core/pull/895)).
18+
19+
### Fixed
20+
21+
- Fix an issue where unsatisfiable requirements did not raise an error ([#891](https://github.com/python-poetry/poetry-core/pull/891)).
22+
- Fix an issue where the implicit main group did not exist if it was explicitly declared as not having any dependencies ([#892](https://github.com/python-poetry/poetry-core/pull/892)).
23+
- Fix an issue where `python_full_version` markers with pre-release versions were parsed incorrectly ([#893](https://github.com/python-poetry/poetry-core/pull/893)).
24+
25+
426
## [2.2.1] - 2025-09-21
527

628
### Fixed
@@ -810,7 +832,8 @@ No changes.
810832
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
811833

812834

813-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/2.2.1...main
835+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/2.3.0...main
836+
[2.3.0]: https://github.com/python-poetry/poetry-core/releases/tag/2.3.0
814837
[2.2.1]: https://github.com/python-poetry/poetry-core/releases/tag/2.2.1
815838
[2.2.0]: https://github.com/python-poetry/poetry-core/releases/tag/2.2.0
816839
[2.1.3]: https://github.com/python-poetry/poetry-core/releases/tag/2.1.3

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.1"
3+
version = "2.3.0"
44
description = "Poetry PEP 517 Build Backend"
55
authors = [
66
{ name = "Sébastien Eustace", email = "sebastien@eustace.io" }

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.1"
10+
__version__ = "2.3.0"
1111

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

0 commit comments

Comments
 (0)