Poetry 0.7.0 is out
This version brings some improvements and a bunch of bugfixes.
New Features
Support for Python 3.4+
Previously, Poetry supported Python 3.6+ but after some consideration it was decided that it would support all Python 3 versions currently by the Python core team (see https://devguide.python.org/#status-of-python-branches).
So now, Poetry supports Python 3.4+.
New standalone installer
Poetry now provides a custom installer that will install poetry
isolated
from the rest of your system by vendorizing its dependencies. This is the
recommended way of installing poetry
.
Poetry 0.6.5 is out
Bugfix release.
Fixed
- Fixed handling of extras in wheels metadata.
Poetry 0.6.4 is out
Bugfix release.
New features
- Added a
debug:info
command to get information about current environment.
Fixes
- Fixed Python version retrieval inside virtualenvs.
- Fixed optional dependencies being set as required in sdist.
- Fixed
--optional
option in theadd
command not being used.
Poetry 0.6.3 is out
Bugfix release.
Fixes
- Fixed built wheels not getting information from the virtualenv.
- Fixed building wheel with conditional extensions.
- Fixed missing files in built wheel with extensions.
- Fixed call to venv binaries on windows.
- Fixed subdependencies representation in lock file.
Poetry 0.6.2 is out
Bugfix release.
Changes
- Changed how wildcard constraints are handled.
Fixes
- Fixed errors with pip 9.0.2.
Poetry 0.6.1 is out
Bugfix release.
Fixes
- Fixed wheel entry points being written on a single line.
- Fixed wheel metadata (Tag and Root-Is-Purelib).
Poetry 0.6.0 is out
This version brings some improvements and a bunch of bugfixes.
New Features
Virtualenv autogeneration
Now, whenever you install packages, Poetry, if not already inside a virtualenv, will create a virtualenv automatically, or use a previously create one, to always work isolated from the rest of your system.
Poetry 0.5.0 is out
This version brings some improvements and a bunch of bugfixes.
Changes
Hashes check when installing
Whenever you install packages with poetry, they will be verified against the hashes
present in the pyproject.lock
file to increase security.
Fixes
- Fixed handling of post releases.
- Fixed python restricted dependencies not being checked against virtualenv version.
- Fixed python/platform constraint not being picked up for subdependencies.
- Fixed skipped packages appearing as installing.
- Fixed platform specification not being used when resolving dependencies.