From 21ed84ed9b422a049c3e2d6b639d9de53ab60dc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Fri, 11 Oct 2019 17:06:37 +0200 Subject: [PATCH] Bump version to 1.0.0b2 --- CHANGELOG.md | 9 ++++++++- poetry/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dd3006519c..9ee18383e8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,9 @@ - The `add` command will now automatically select the latest prerelease if only prereleases are available. - The `add` command can now update a dependencies if an explicit constraint is given ([#1221](https://github.com/sdispater/poetry/pull/1221)). - Removed the `--develop` option from the `install` command. +- Improved UX when searching for packages in the `init` command. +- The `shell` has been improved. +- The `poetry run` command now uses `os.execvp()` rather than spawning a new subprocess. ### Fixed @@ -42,6 +45,10 @@ - Fixed installing Poetry-based packages breaking with `pip`. - Fixed packages with empty markers being added to the lock file. - Fixed invalid lock file generation in some cases. +- Fixed local version identifier handling in wheel file names. +- Fixed packages with invalid metadata triggering an error instead of being skipped. +- Fixed the generation of invalid lock files in some cases. +- Git dependencies are now properly locked to a specific revision when specifying a branch or a tag. ## [0.12.17] - 2019-07-03 @@ -725,7 +732,7 @@ Initial release -[Unreleased]: https://github.com/sdispater/poetry/compare/0.12.17...develop +[Unreleased]: https://github.com/sdispater/poetry/compare/0.12.17...master [0.12.17]: https://github.com/sdispater/poetry/releases/tag/0.12.17 [0.12.16]: https://github.com/sdispater/poetry/releases/tag/0.12.16 [0.12.15]: https://github.com/sdispater/poetry/releases/tag/0.12.15 diff --git a/poetry/__version__.py b/poetry/__version__.py index 5313823061b..846359f62e9 100644 --- a/poetry/__version__.py +++ b/poetry/__version__.py @@ -1 +1 @@ -__version__ = "1.0.0b1" +__version__ = "1.0.0b2" diff --git a/pyproject.toml b/pyproject.toml index 95eb0da9a65..721982617e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry" -version = "1.0.0b1" +version = "1.0.0b2" description = "Python dependency management and packaging made easy." authors = [ "Sébastien Eustace "