Poetry 0.10.1 is out

Published on May 28, 2018 in Releases with tags 0.X
Bugfix release. Fixes Fixed packages not found for prerelease version constraints when resolving dependencies. Fixed init and add commands.

Poetry 0.10.0 is out

Published on May 28, 2018 in Releases with tags 0.X
This version brings a brand new dependency resolver which is more consistent, reliable and faster. New Features Brand new dependency resolver The dependency resolver has been rewritten from scratch to make it more resilient and reliable. It solves conflicts in a faster and smarter way to be as exhaustive as possible. It also comes with much clearer error messages when no valid solution can be found. Here are some examples:

Poetry 0.9.1 is out

Published on May 18, 2018 in Releases with tags 0.X
Bugfix release. Fixes Fixed handling of package names with dots. (Thanks to bertjwregeer) Fixed path dependencies being resolved from the current path instead of the pyproject.toml file. (Thanks to radix)

Poetry 0.9.0 is out

Published on May 7, 2018 in Releases with tags 0.X
This version brings huge improvements to the dependency resolution speed. New Features Huge speed improvements in the dependency resolution process In previous releases, the dependency resolution process could be extremely slow, especially for some packages like boto3, due to the way the resolver works. So, one of the focus of this release was to improve it so that the dependency resolution time could be deemed acceptable. And it seems it paid off.

Poetry 0.8.6 is out

Published on April 30, 2018 in Releases with tags 0.X
Bugfix release. Fixes Fixed config files not being created with the config command.

Poetry 0.8.5 is out

Published on April 19, 2018 in Releases with tags 0.X
Bugfix release. Fixes Fixed a bug in dependency resolution which led to installation errors. Fixed a bug where malformed sdists would lead to dependency resolution failing.

Poetry 0.8.4 is out

Published on April 18, 2018 in Releases with tags 0.X
Bugfix release. Fixes Fixed a bug where dependencies constraints in lock were too strict. Fixed unicode error in search command for Python 2.7. Fixed error with git dependencies.

Poetry 0.8.3 is out

Published on April 16, 2018 in Releases with tags 0.X
Bugfix release. Fixes Fixed platform verification which led to missing packages. Fixed duplicates in pyproject.lock.

Poetry 0.8.2 is out

Published on April 14, 2018 in Releases with tags 0.X
Bugfix release. Fixes Fixed add command picking up prereleases by default. Fixed dependendency resolution on Windows when unpacking distributions. Fixed dependency resolution with post releases. Fixed dependencies being installed even if not necessary for current system.

Poetry 0.8.0 is out

Published on April 13, 2018 in Releases with tags 0.X
This version brings some improvements and a bunch of bugfixes. New Features Support for Python 2.7 After adding support for Python 3.4 and 3.5 in version 0.7.0, poetry now supports Python 2.7. The decision was made so that Python 2.7 projects can benefit from the advantages that poetry provides. Fallback mechanism for missing dependencies poetry uses the PyPI JSON API to retrieve package information. However, some packages (like boto3 for example) have missing dependency information due to bad packaging/publishing which means that poetry won’t be able to properly resolve dependencies.