Commit 21ed84ed by Sébastien Eustace

Bump version to 1.0.0b2

parent b1c4c68d
...@@ -34,6 +34,9 @@ ...@@ -34,6 +34,9 @@
- The `add` command will now automatically select the latest prerelease if only prereleases are available. - 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)). - 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. - 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 ### Fixed
...@@ -42,6 +45,10 @@ ...@@ -42,6 +45,10 @@
- Fixed installing Poetry-based packages breaking with `pip`. - Fixed installing Poetry-based packages breaking with `pip`.
- Fixed packages with empty markers being added to the lock file. - Fixed packages with empty markers being added to the lock file.
- Fixed invalid lock file generation in some cases. - 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 ## [0.12.17] - 2019-07-03
...@@ -725,7 +732,7 @@ Initial release ...@@ -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.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.16]: https://github.com/sdispater/poetry/releases/tag/0.12.16
[0.12.15]: https://github.com/sdispater/poetry/releases/tag/0.12.15 [0.12.15]: https://github.com/sdispater/poetry/releases/tag/0.12.15
......
__version__ = "1.0.0b1" __version__ = "1.0.0b2"
[tool.poetry] [tool.poetry]
name = "poetry" name = "poetry"
version = "1.0.0b1" version = "1.0.0b2"
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