From cb1277a2323ec2ee77f0d519999f23a9121685c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Mon, 4 Oct 2021 18:56:23 +0200 Subject: [PATCH] Bump version to 1.0.7 --- CHANGELOG.md | 11 ++++++++++- poetry/core/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a63d9bba4..3a51c7ea6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## [1.0.7] - 2021-10-04 + +### Fixed + +- Fixed an issue where the wrong `git` executable could be used on Windows. ([#213](https://github.com/python-poetry/poetry-core/pull/213)) +- Fixed an issue where the Python 3.10 classifier was not automatically added. ([#215](https://github.com/python-poetry/poetry-core/pull/215)) + + ## [1.0.6] - 2021-09-21 ### Added @@ -171,7 +179,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.6...1.1 +[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.0.7...1.0 +[1.0.7]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.7 [1.0.6]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.6 [1.0.5]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.5 [1.0.4]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.4 diff --git a/poetry/core/__init__.py b/poetry/core/__init__.py index 1c5604480..e57db4783 100644 --- a/poetry/core/__init__.py +++ b/poetry/core/__init__.py @@ -7,7 +7,7 @@ # noinspection PyUnresolvedReferences from pathlib2 import Path -__version__ = "1.0.6" +__version__ = "1.0.7" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix() diff --git a/pyproject.toml b/pyproject.toml index 7b63f39d7..038fb7e51 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.0.6" +version = "1.0.7" description = "Poetry PEP 517 Build Backend" authors = ["Sébastien Eustace "]