From c952c29adc86dadcca0f3f4d46ba56ebb8c6bc65 Mon Sep 17 00:00:00 2001 From: Arun Babu Neelicattu Date: Tue, 24 May 2022 20:36:30 +0200 Subject: [PATCH] bump version to 1.1.0b2 --- CHANGELOG.md | 14 +++++++++++++- pyproject.toml | 2 +- src/poetry/core/__init__.py | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d35055222..30ac3fa9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## [1.1.0b2] - 2022-05-24 + +### Fixed + +- Fixed a regression where `poetry-core` no longer handled improper Python version constraints from package metadata ([#371](https://github.com/python-poetry/poetry-core/pull/371)) +- Fixed missing version bump in `poetry.core.__version__` ([#367](https://github.com/python-poetry/poetry-core/pull/367)) + +### Improvements + +- `poetry-core` generated wheel's now correctly identify `Generator` metadata as `poetry-core` instead of `poetry` ([#367](https://github.com/python-poetry/poetry-core/pull/367)) + ## [1.1.0b1] - 2022-05-23 ### Fixed @@ -283,7 +294,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.1.0b1...main +[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0b2...main +[1.1.0b2]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0b2 [1.1.0b1]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0b1 [1.1.0a7]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a7 [1.1.0a6]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a6 diff --git a/pyproject.toml b/pyproject.toml index ca31b051b..1eb41d71c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.1.0b1" +version = "1.1.0b2" 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 ec0dfc199..eca89b4f3 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.1.0b1" +__version__ = "1.1.0b2" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()