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
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Change Log


## [2.3.1] - 2026-02-01

### Changed

- Update list of supported licenses ([#912](https://github.com/python-poetry/poetry-core/pull/912)).

### Fixed

- Fix an issue where `platform_release` could not be parsed on Windows Server ([#911](https://github.com/python-poetry/poetry-core/pull/911)).


## [2.3.0] - 2026-01-18

### Added
Expand Down Expand Up @@ -832,7 +843,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.3.0...main
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/2.3.1...main
[2.3.1]: https://github.com/python-poetry/poetry-core/releases/tag/2.3.1
[2.3.0]: https://github.com/python-poetry/poetry-core/releases/tag/2.3.0
[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
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.3.0"
version = "2.3.1"
description = "Poetry PEP 517 Build Backend"
authors = [
{ name = "Sébastien Eustace", email = "sebastien@eustace.io" }
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.3.0"
__version__ = "2.3.1"

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

Expand Down