From b0d264eb96b6065629ec0f4651d947c2f3957b7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Fri, 6 Dec 2019 18:58:43 +0100 Subject: [PATCH] Bump version to 1.0.0b9 (#1687) --- CHANGELOG.md | 4 ++++ poetry/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3361d388922..c05f5a96b5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,8 @@ - Specifying dependencies with `allows-prereleases` in the `pyproject.toml` file is deprecated for consistency with the `add` command. Use `allow-prereleases` instead. - Improved the error message when the lock file is invalid. - Whenever Poetry needs to use the "system" Python, it will now call `sys.executable` instead of the `python` command. +- Improved the error message displayed on conflicting Python requirements ([#1681](https://github.com/sdispater/poetry/pull/1681)). +- Improved the `site-packages` directory detection ([#1683](https://github.com/sdispater/poetry/pull/1683)). ### Fixed @@ -69,6 +71,8 @@ - Fixed an error in `show` when using the `-o/--outdated` option. - Fixed PEP 508 url dependency handling. - Fixed excluded files via the `exclude` being included in distributions. +- Fixed an error in `env use` if the `virtualenvs.in-project` setting is activated ([#1682](https://github.com/sdispater/poetry/pull/1682)) +- Fixed handling of `empty` and `any` markers in unions of markers ([#1650](https://github.com/sdispater/poetry/pull/1650)). ## [0.12.17] - 2019-07-03 diff --git a/poetry/__version__.py b/poetry/__version__.py index 00c7505017f..77eaf592dd6 100644 --- a/poetry/__version__.py +++ b/poetry/__version__.py @@ -1 +1 @@ -__version__ = "1.0.0b8" +__version__ = "1.0.0b9" diff --git a/pyproject.toml b/pyproject.toml index a76efd54497..faba7a6a1e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.0.0b8" +version = "1.0.0b9" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace "