Skip to content

Commit e33e9d1

Browse files
committed
release: bump version to 1.5.2
1 parent 35e656c commit e33e9d1

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log
22

33

4+
## [1.5.2] - 2023-03-13
5+
6+
### Fixed
7+
8+
- Fix an issue where wheels built on Windows could contain duplicate entries in the RECORD file ([#555](https://github.com/python-poetry/poetry-core/pull/555)).
9+
10+
411
## [1.5.1] - 2023-02-20
512

613
### Changed
@@ -496,7 +503,8 @@ No changes.
496503
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
497504

498505

499-
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.5.1...main
506+
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.5.2...main
507+
[1.5.2]: https://github.com/python-poetry/poetry-core/releases/tag/1.5.2
500508
[1.5.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.5.1
501509
[1.5.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.5.0
502510
[1.4.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.4.0

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry-core"
3-
version = "1.5.1"
3+
version = "1.5.2"
44
description = "Poetry PEP 517 Build Backend"
55
authors = ["Sébastien Eustace <[email protected]>"]
66

src/poetry/core/__init__.py

+1-1
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__ = "1.5.1"
10+
__version__ = "1.5.2"
1111

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

0 commit comments

Comments
 (0)