Poetry 0.10.2 is out
Bugfix release.
Fixes
- Fixed handling of
in
environment markers with commas. - Fixed a
UnicodeDecodeError
when an error occurs in venv. - Fixed Python requirements not properly set when resolving dependencies.
- Fixed terminal coloring being activated even if not supported.
- Fixed wrong executable being picked up on Windows in
poetry run
. - Fixed error when listing distribution links for private repositories.
- Fixed handling of PEP 440
~=
version constraint.
Poetry 0.10.1 is out
Bugfix release.
Fixes
- Fixed packages not found for prerelease version constraints when resolving dependencies.
- Fixed
init
andadd
commands.
Poetry 0.10.0 is out
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
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
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
Bugfix release.
Fixes
- Fixed config files not being created with the
config
command.
Poetry 0.8.5 is out
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
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
Bugfix release.
Fixes
- Fixed platform verification which led to missing packages.
- Fixed duplicates in
pyproject.lock
.
Poetry 0.8.2 is out
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.