diff --git a/CHANGELOG.md b/CHANGELOG.md index 820d9ade6..338b10e79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log +## [1.5.2] - 2023-03-13 + +### Fixed + +- 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)). + + ## [1.5.1] - 2023-02-20 ### Changed @@ -496,7 +503,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/1.5.1...main +[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.5.2...main +[1.5.2]: https://github.com/python-poetry/poetry-core/releases/tag/1.5.2 [1.5.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.5.1 [1.5.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.5.0 [1.4.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.4.0 diff --git a/pyproject.toml b/pyproject.toml index 4161ae0cb..b75bf38f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.5.1" +version = "1.5.2" description = "Poetry PEP 517 Build Backend" authors = ["Sébastien Eustace "] diff --git a/src/poetry/core/__init__.py b/src/poetry/core/__init__.py index c1073fa48..857c0af75 100644 --- a/src/poetry/core/__init__.py +++ b/src/poetry/core/__init__.py @@ -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__ = "1.5.1" +__version__ = "1.5.2" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()