Skip to content

Commit

Permalink
Relax poetry-core version and prepare for 2.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Secrus committed Nov 22, 2022
1 parent 108f821 commit b6826df
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [2.0.1] - 2022-11-23

- Relax `poetry-core` requirement for PEP-517 builds ([#291](https://github.com/python-poetry/cleo/pull/291)).

## [2.0.0] - 2022-11-21

No source code changes.
Expand Down Expand Up @@ -263,7 +267,9 @@ This is a major release with some API changes.



[unreleased]: https://github.com/python-poetry/cleo/compare/1.0.0...main
[unreleased]: https://github.com/python-poetry/cleo/compare/2.0.1...main
[2.0.1]: https://github.com/python-poetry/cleo/releases/tag/2.0.1
[2.0.0]: https://github.com/python-poetry/cleo/releases/tag/2.0.0
[1.0.0]: https://github.com/python-poetry/cleo/releases/tag/1.0.0
[0.8.1]: https://github.com/python-poetry/cleo/releases/tag/0.8.1
[0.8.0]: https://github.com/python-poetry/cleo/releases/tag/0.8.0
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cleo"
version = "2.0.0"
version = "2.0.1"
description = "Cleo allows you to create beautiful and testable command-line interfaces."
authors = [
"Sébastien Eustace <sebastien@eustace.io>"
Expand Down Expand Up @@ -81,5 +81,5 @@ exclude_lines = [
]

[build-system]
requires = ["poetry-core~=1.1.0"]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion src/cleo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import annotations


__version__ = "1.0.0"
__version__ = "2.0.1"

0 comments on commit b6826df

Please sign in to comment.