From d3c9049a18ae33baacfcb5c698777282f2f58128 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Tue, 21 Jul 2020 23:06:40 +0200 Subject: [PATCH] Bump version to 1.0.10 --- CHANGELOG.md | 18 +++++++++++++++++- poetry/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a00edcf837a..9035bddc271 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## [1.0.10] - 2020-07-21 + +### Changed + +- The lock files are now versioned to ease transitions for lock file format changes, with warnings being displayed on incompatibility detection ([#2695](https://github.com/python-poetry/poetry/pull/2695)). +- The `init` and `new` commands will now provide hints on invalid given licenses ([#1634](https://github.com/python-poetry/poetry/pull/1634)). + +### Fixed + +- Fixed error messages when the authors specified in the `pyproject.toml` file are invalid ([#2525](https://github.com/python-poetry/poetry/pull/2525)). +- Fixed empty `.venv` directories being deleted ([#2064](https://github.com/python-poetry/poetry/pull/2064)). +- Fixed the `shell` command for `tcsh` shells ([#2583](https://github.com/python-poetry/poetry/pull/2583)). +- Fixed errors when installing directory or file dependencies in some cases ([#2582](https://github.com/python-poetry/poetry/pull/2582)). + + ## [1.0.9] - 2020-06-09 ### Fixed @@ -868,7 +883,8 @@ Initial release -[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.9...master +[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.10...master +[1.0.10]: https://github.com/python-poetry/poetry/releases/tag/1.0.10 [1.0.9]: https://github.com/python-poetry/poetry/releases/tag/1.0.9 [1.0.8]: https://github.com/python-poetry/poetry/releases/tag/1.0.8 [1.0.7]: https://github.com/python-poetry/poetry/releases/tag/1.0.7 diff --git a/poetry/__version__.py b/poetry/__version__.py index 39e0411d5cd..9fd0f8dd6ae 100644 --- a/poetry/__version__.py +++ b/poetry/__version__.py @@ -1 +1 @@ -__version__ = "1.0.9" +__version__ = "1.0.10" diff --git a/pyproject.toml b/pyproject.toml index 7a384698f2d..76dca20043e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.0.9" +version = "1.0.10" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace "