From af5b69d753f805d7a576ce79b5f26b0eab00cbb5 Mon Sep 17 00:00:00 2001 From: finswimmer Date: Tue, 16 Aug 2022 14:47:14 +0200 Subject: [PATCH] release: bump to version 1.1.0-rc.1 --- CHANGELOG.md | 17 ++++++++++++++++- pyproject.toml | 2 +- src/poetry/core/__init__.py | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e15705c0..71f9b50c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## [1.1.0rc1] - 2022-08-16 + +### Changed + +- Replaced Poetry's helper method `canonicalize_name()` by `packaging.utils.canonicalize_name()` ([#418](https://github.com/python-poetry/poetry-core/pull/418)). +- Removed unused code ([#419](https://github.com/python-poetry/poetry-core/pull/419)). + +### Fixed + +- Fixed an issue with markers, that results in incorrectly resolved extra dependencies ([#415](https://github.com/python-poetry/poetry-core/pull/415)). +- Fixed an issue where equal markers had not the same hash ([#417](https://github.com/python-poetry/poetry-core/pull/417)). +- Fixed `allows_any()` for local versions ([#433)](https://github.com/python-poetry/poetry-core/pull/433)). +- Fixed an issue with Python constraints from markers ([#436](https://github.com/python-poetry/poetry-core/pull/436)). + ## [1.1.0b3] - 2022-07-09 @@ -327,7 +341,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.0b3...main +[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0rc1...main +[1.1.0rc1]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0rc1 [1.1.0b3]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0b3 [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 diff --git a/pyproject.toml b/pyproject.toml index f31cc136f..b3713cdea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.1.0b3" +version = "1.1.0rc1" 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 52e0475ee..ae996ea33 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.0b3" +__version__ = "1.1.0rc1" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()