From 4d666b218ed014f74729d909350c754ad12d929b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Mon, 29 Mar 2021 18:10:50 +0200 Subject: [PATCH] Bump version to 1.1.0a1 --- CHANGELOG.md | 28 +++++++++++++++++++++++++++- poetry/core/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 29 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0056c56d9..9214d9d73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Change Log +## [1.1.0a1] - 2021-03-30 + +This version is the first to drop support for Python 2.7 and 3.5. + +If you are still using these versions you should update the `requires` property of the `build-system` section +to restrict the version of `poetry-core`: + +```toml +[build-system] +requires = ["poetry-core<1.1.0"] +build-backend = "poetry.core.masonry.api" +``` + +### Changed + +- Dropped support for Python 2.7 and 3.5 ([#131](https://github.com/python-poetry/poetry-core/pull/131)). +- Reorganized imports internally to improve performances ([#131](https://github.com/python-poetry/poetry-core/pull/131)). +- Directory dependencies are now in non-develop mode by default ([#98](https://github.com/python-poetry/poetry-core/pull/98)). +- Improved support for PEP 440 specific versions that do not abide by semantic versioning ([#140](https://github.com/python-poetry/poetry-core/pull/140)). + +### Fixed + +- Fixed path dependencies PEP 508 representation ([#141](https://github.com/python-poetry/poetry-core/pull/141)). + + ## [1.0.2] - 2021-02-05 ### Fixed @@ -139,7 +164,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.0.2...master +[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0a1...master +[1.1.0a1]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a1 [1.0.2]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.2 [1.0.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.1 [1.0.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0 diff --git a/poetry/core/__init__.py b/poetry/core/__init__.py index faa2c8436..8b1e52693 100644 --- a/poetry/core/__init__.py +++ b/poetry/core/__init__.py @@ -3,7 +3,7 @@ from pathlib import Path -__version__ = "1.1.0a0" +__version__ = "1.1.0a1" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix() diff --git a/pyproject.toml b/pyproject.toml index 8095d9d97..d93419a65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.1.0a0" +version = "1.1.0a1" description = "Poetry PEP 517 Build Backend" authors = ["Sébastien Eustace "]