From 72b56339c2a7f6b5013066151fb2329226b08341 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Fri, 5 Jun 2020 17:19:43 +0200 Subject: [PATCH] Bump version to 1.0.0a7 --- CHANGELOG.md | 18 +++++++++++++++++- poetry/core/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cebe9b09..71f5f69a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## [1.0.0a7] - 2020-05-06 + +### Added + +- Added support for format-specific includes via the `include` property ([#6](https://github.com/python-poetry/core/pull/6)). + +### Changed + +- Allow url dependencies in multiple constraints dependencies ([#32](https://github.com/python-poetry/core/pull/32)). + +### Fixed + +- Fixed PEP 508 representation and parsing of VCS dependencies ([#30](https://github.com/python-poetry/core/pull/30)). + + ## [1.0.0a6] - 2020-04-24 @@ -25,5 +40,6 @@ - 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.0a6...master +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.0a7...master +[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 ff2f29129..5853e488b 100644 --- a/poetry/core/__init__.py +++ b/poetry/core/__init__.py @@ -7,7 +7,7 @@ # noinspection PyUnresolvedReferences from pathlib2 import Path -__version__ = "1.0.0a6" +__version__ = "1.0.0a7" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix() diff --git a/pyproject.toml b/pyproject.toml index f4b2eba03..f12a68923 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.0.0a6" +version = "1.0.0a7" description = "Core utilities for Poetry" authors = ["Sébastien Eustace "]