diff --git a/CHANGELOG.md b/CHANGELOG.md index 9214d9d73..b43a8584d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## [1.1.0a2] - 2021-04-08 + +### Fixed + +- Fixed performance regressions when parsing version constraints ([#152](https://github.com/python-poetry/poetry-core/pull/152)). +- Fixed how local build versions are handled and compared ([#157](https://github.com/python-poetry/poetry-core/pull/157), [#158](https://github.com/python-poetry/poetry-core/pull/158)). +- Fixed errors when parsing some environment markers ([#155](https://github.com/python-poetry/poetry-core/pull/155)). + + ## [1.1.0a1] - 2021-03-30 This version is the first to drop support for Python 2.7 and 3.5. @@ -164,7 +173,8 @@ No changes. - Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)). -[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0a1...master +[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0a2...master +[1.1.0a2]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a2 [1.1.0a1]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0a1 [1.0.2]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.2 [1.0.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.1 diff --git a/poetry/core/__init__.py b/poetry/core/__init__.py index 8b1e52693..9446810b2 100644 --- a/poetry/core/__init__.py +++ b/poetry/core/__init__.py @@ -3,7 +3,7 @@ from pathlib import Path -__version__ = "1.1.0a1" +__version__ = "1.1.0a2" __vendor_site__ = (Path(__file__).parent / "_vendor").as_posix() diff --git a/pyproject.toml b/pyproject.toml index d93419a65..28307d7b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poetry-core" -version = "1.1.0a1" +version = "1.1.0a2" description = "Poetry PEP 517 Build Backend" authors = ["Sébastien Eustace "]