Skip to content

Commit ac4cd5d

Browse files
committed
release: bump version to 2.1.2
1 parent bb0071a commit ac4cd5d

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

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

33

4+
## [2.1.2] - 2025-03-29
5+
6+
### Changed
7+
8+
- Improve performance of marker operations ([#851](https://github.com/python-poetry/poetry-core/pull/851)).
9+
10+
### Fixed
11+
12+
- Fix an issue where incorrect markers were calculated when removing parts covered by the project's Python constraint ([#841](https://github.com/python-poetry/poetry-core/pull/841),
13+
[#846](https://github.com/python-poetry/poetry-core/pull/846)).
14+
- Fix an issue where `extra` markers were not simplified ([#842](https://github.com/python-poetry/poetry-core/pull/842),
15+
[#845](https://github.com/python-poetry/poetry-core/pull/845),
16+
[#847](https://github.com/python-poetry/poetry-core/pull/847)).
17+
- Fix an issue where the intersection and union of markers was not deterministic ([#843](https://github.com/python-poetry/poetry-core/pull/843)).
18+
- Fix an issue where the intersection of `python_version` markers was not recognized as empty ([#849](https://github.com/python-poetry/poetry-core/pull/849)).
19+
- Fix an issue where `python_version` markers were not simplified ([#848](https://github.com/python-poetry/poetry-core/pull/848),
20+
[#851](https://github.com/python-poetry/poetry-core/pull/851)).
21+
- Fix an issue where Python constraints on a package were converted into invalid markers ([#853](https://github.com/python-poetry/poetry-core/pull/853)).
22+
23+
424
## [2.1.1] - 2025-02-16
525

626
### Fixed
@@ -745,7 +765,8 @@ No changes.
745765
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
746766

747767

748-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/2.1.1...main
768+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/2.1.2...main
769+
[2.1.2]: https://github.com/python-poetry/poetry-core/releases/tag/2.1.2
749770
[2.1.1]: https://github.com/python-poetry/poetry-core/releases/tag/2.1.1
750771
[2.1.0]: https://github.com/python-poetry/poetry-core/releases/tag/2.1.0
751772
[2.0.1]: https://github.com/python-poetry/poetry-core/releases/tag/2.0.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.1"
3+
version = "2.1.2"
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.1"
10+
__version__ = "2.1.2"
1111

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

0 commit comments

Comments
 (0)