Commit 285767d7 by Sébastien Eustace

Bump version to 1.0.0b6

parent f91fdbf0
...@@ -41,6 +41,8 @@ ...@@ -41,6 +41,8 @@
- The `shell` has been improved. - The `shell` has been improved.
- The `poetry run` command now uses `os.execvp()` rather than spawning a new subprocess. - The `poetry run` command now uses `os.execvp()` rather than spawning a new subprocess.
- Specifying dependencies with `allows-prereleases` in the `pyproject.toml` file is deprecated for consistency with the `add` command. Use `allow-prereleases` instead. - 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.
### Fixed ### Fixed
...@@ -63,7 +65,8 @@ ...@@ -63,7 +65,8 @@
- Fixed wrong latest version being displayed when executing `show -l`. - Fixed wrong latest version being displayed when executing `show -l`.
- Fixed `TooManyRedirects` errors being raised when resolving dependencies. - Fixed `TooManyRedirects` errors being raised when resolving dependencies.
- Fixed custom indices dependencies being constantly updated. - Fixed custom indices dependencies being constantly updated.
- Fix the behavior of the `--install` option of the debug resolve command. - Fixed the behavior of the `--install` option of the debug resolve command.
- Fixed an error in `show` when using the `-o/--outdated` option.
## [0.12.17] - 2019-07-03 ## [0.12.17] - 2019-07-03
......
__version__ = "1.0.0b5" __version__ = "1.0.0b6"
[tool.poetry] [tool.poetry]
name = "poetry" name = "poetry"
version = "1.0.0b5" version = "1.0.0b6"
description = "Python dependency management and packaging made easy." description = "Python dependency management and packaging made easy."
authors = [ authors = [
"Sébastien Eustace <sebastien@eustace.io>" "Sébastien Eustace <sebastien@eustace.io>"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment