Commit 51c70421 by Sébastien Eustace

Bump version to 1.0.0b4

parent 1a1a317c
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
- Improved UX when searching for packages in the `init` command. - Improved UX when searching for packages in the `init` command.
- 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.
### Fixed ### Fixed
...@@ -55,6 +56,9 @@ ...@@ -55,6 +56,9 @@
- Fixed dependency resolution for conditional development dependencies. - Fixed dependency resolution for conditional development dependencies.
- Fixed generated dependency constraints when they contain inequality operators. - Fixed generated dependency constraints when they contain inequality operators.
- The `run` command now properly handles the `--` separator. - The `run` command now properly handles the `--` separator.
- Fixed some issues with `path` dependencies being seen as `git` dependencies.
- Fixed various issues with the way `extra` markers in dependencies were handled.
- Fixed the option conflicts in the `run` command.
## [0.12.17] - 2019-07-03 ## [0.12.17] - 2019-07-03
......
__version__ = "1.0.0b3" __version__ = "1.0.0b4"
[tool.poetry] [tool.poetry]
name = "poetry" name = "poetry"
version = "1.0.0b3" version = "1.0.0b4"
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