From 09650f399043f9908639fed5c75643a2c82fb034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Fri, 24 Jul 2020 15:31:09 +0200 Subject: [PATCH] Bump version to 1.0.0a9 --- CHANGELOG.md | 20 +++++++++++++++++++- poetry/core/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4ca8c31a..dd3095919 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Change Log +## [1.0.0a9] - 2020-07-24 + +### Added + +- Added support for build scripts without `setup.py` generation ([#45](https://github.com/python-poetry/core/pull/45)). + +### Changed + +- Improved the parsing of requirements and environment markers ([#44](https://github.com/python-poetry/core/pull/44)). + +### Fixed + +- Fixed the default value used for the `build.generate-setup-file` settings ([#43](https://github.com/python-poetry/core/pull/43)). +- Fixed error messages when the authors specified in the pyproject.toml file are invalid ([#49](https://github.com/python-poetry/core/pull/49)). +- Fixed distributions build when using the PEP-517 backend for packages with includes ([#47](https://github.com/python-poetry/core/pull/47)). + + ## [1.0.0a8] - 2020-06-26 ### Fixed @@ -47,7 +64,8 @@ - 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.0a8...master +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.0a9...master +[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 diff --git a/poetry/core/__init__.py b/poetry/core/__init__.py index d00143530..40911d1d8 100644 --- a/poetry/core/__init__.py +++ b/poetry/core/__init__.py @@ -7,7 +7,7 @@ # noinspection PyUnresolvedReferences from pathlib2 import Path -__version__ = "1.0.0a8" +__version__ = "1.0.0a9" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix() diff --git a/pyproject.toml b/pyproject.toml index 2a85cda30..f2abb3a65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.0.0a8" +version = "1.0.0a9" description = "Core utilities for Poetry" authors = ["Sébastien Eustace "]