From 4e413e036d40d51de5e940c49fd4940a1dd1778d Mon Sep 17 00:00:00 2001 From: Bjorn Neergaard Date: Fri, 7 Oct 2022 11:01:45 -0600 Subject: [PATCH] release: bump version to 1.3.2 --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- src/poetry/core/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa331d6a2..11252e03b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [1.3.2] - 2022-10-07 + +### Fixed + +- Fix an issue where the normalization was not applied to the path of an sdist built using a PEP 517 frontend ([#495](https://github.com/python-poetry/poetry-core/pull/495)). + ## [1.3.1] - 2022-10-05 ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 995d1418f..e898e4da0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.3.1" +version = "1.3.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 0ffdc8d11..ede6c1c8b 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.3.1" +__version__ = "1.3.2" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()