From 4a5ecd2efa7f02f32fe124232fc9ffa7b874b237 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81bastien=20Eustace?= Date: Wed, 30 Sep 2020 21:18:16 +0200 Subject: [PATCH] Bump version to 1.0.0rc3 --- CHANGELOG.md | 26 ++++++++++++++++++-------- poetry/core/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 20 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cba74a2e1..0a5266cb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## [1.0.0rc3] - 2020-09-30 + +### Changed + +- Removed `intreehooks` build backend in favor of the `backend-path` mechanism ([#90](https://github.com/python-poetry/poetry-core/pull/90)). +- Directory dependencies will now always use a posix path for their representation ([#90](https://github.com/python-poetry/poetry-core/pull/91)). +- Dependency constraints can now be set directly via a proper setter ([#90](https://github.com/python-poetry/poetry-core/pull/90)). + + ## [1.0.0rc2] - 2020-09-25 ### Fixed @@ -102,11 +111,12 @@ - Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)). -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.0rc2...master -[1.0.0rc2]: https://github.com/python-poetry/poetry/releases/tag/1.0.0rc2 -[1.0.0rc1]: https://github.com/python-poetry/poetry/releases/tag/1.0.0rc1 -[1.0.0b1]: https://github.com/python-poetry/poetry/releases/tag/1.0.0b1 -[1.0.0a9]: https://github.com/python-poetry/poetry/releases/tag/1.0.0a9 -[1.0.0a8]: https://github.com/python-poetry/poetry/releases/tag/1.0.0a8 -[1.0.0a7]: https://github.com/python-poetry/poetry/releases/tag/1.0.0a7 -[1.0.0a6]: https://github.com/python-poetry/poetry/releases/tag/1.0.0a6 +[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.0.0rc3...master +[1.0.0rc3]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0rc3 +[1.0.0rc2]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0rc2 +[1.0.0rc1]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0rc1 +[1.0.0b1]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0b1 +[1.0.0a9]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0a9 +[1.0.0a8]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0a8 +[1.0.0a7]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0a7 +[1.0.0a6]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0a6 diff --git a/poetry/core/__init__.py b/poetry/core/__init__.py index f6d2169f3..73851ecf0 100644 --- a/poetry/core/__init__.py +++ b/poetry/core/__init__.py @@ -7,7 +7,7 @@ # noinspection PyUnresolvedReferences from pathlib2 import Path -__version__ = "1.0.0rc2" +__version__ = "1.0.0rc3" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix() diff --git a/pyproject.toml b/pyproject.toml index 30bb53108..19f559c54 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.0.0rc2" +version = "1.0.0rc3" description = "Poetry PEP 517 Build Backend" authors = ["Sébastien Eustace "]