From 32c6b24670c71c09d658b11c859a4c895552d09d Mon Sep 17 00:00:00 2001 From: finswimmer Date: Wed, 9 Feb 2022 20:17:29 +0100 Subject: [PATCH] bump to version 1.1.0a7 --- CHANGELOG.md | 30 +++++++++++++++++++++++++++++- pyproject.toml | 2 +- src/poetry/core/__init__.py | 2 +- 3 files changed, 31 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de7425369..c6535a446 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Change Log +## [1.1.0a7] - 2022-02-10 + +### Fixed + +- Fixed an issue when evaluate `in/not in` markers([#188](https://github.com/python-poetry/poetry-core/pull/188)). +- Fixed an issue when parsing of caret constraint with leading zero ([#201](https://github.com/python-poetry/poetry-core/pull/201)). +- Respect format for explicit included files when finding excluded files ([#228](https://github.com/python-poetry/poetry-core/pull/228)). +- Fixed an issue where only the last location was used when multiple packages should be included ([#108](https://github.com/python-poetry/poetry-core/pull/108)) +- Ensure that package `description` contains no new line ([#219](https://github.com/python-poetry/poetry-core/pull/219)). +- Fixed an issue where all default dependencies were removed instead of just the selected one ([#220](https://github.com/python-poetry/poetry-core/pull/220)) + +### Added + +- Add support for most of the guaranteed hashes ([#207](https://github.com/python-poetry/poetry-core/pull/207)). +- Add support to declare multiple README files ([#248](https://github.com/python-poetry/poetry-core/pull/248)). +- Add support for git sub directories ([#192](https://github.com/python-poetry/poetry-core/pull/192)). +- Add hooks according to PEP-660 for editable installs ([#182](https://github.com/python-poetry/poetry-core/pull/182)). +- Add support for version epochs ([#264](https://github.com/python-poetry/poetry-core/pull/264)). + + +### Changed + +- Drop python3.6 support ([#263](https://github.com/python-poetry/poetry-core/pull/263)). +- Loose the strictness when parsing version constraint to support invalid use of wildcards, e.g. `>=3.*` ([#186](https://github.com/python-poetry/poetry-core/pull/186)). +- No longer assume a default git branch name ([#192](https://github.com/python-poetry/poetry-core/pull/192)). +- Sort package name in extras to make it reproducible ([#280](https://github.com/python-poetry/poetry-core/pull/280)). + ## [1.1.0a6] - 2021-07-30 ### Added @@ -213,7 +240,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.0a6...master +[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0a7...master +[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 [1.1.0a5]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a5 [1.1.0a4]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a4 diff --git a/pyproject.toml b/pyproject.toml index 61acd127a..d7a2ba214 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.1.0a6" +version = "1.1.0-alpha.7" 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 0ae40317a..0babe5cab 100644 --- a/src/poetry/core/__init__.py +++ b/src/poetry/core/__init__.py @@ -3,7 +3,7 @@ from pathlib import Path -__version__ = "1.1.0a6" +__version__ = "1.1.0a7" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()