Skip to content

Commit

Permalink
Merge pull request #161 from python-poetry/release-1.1.0a2
Browse files Browse the repository at this point in the history
Release 1.1.0a2
  • Loading branch information
sdispater committed Apr 8, 2021
2 parents 716375e + 8290b1f commit 3f978e7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion poetry/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from pathlib import Path


__version__ = "1.1.0a1"
__version__ = "1.1.0a2"

__vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <sebastien@eustace.io>"]

Expand Down

0 comments on commit 3f978e7

Please sign in to comment.