Skip to content

Commit f695cd3

Browse files
Secrusneersighted
authored andcommitted
Release Cleo 2.1
1 parent 9ab81d1 commit f695cd3

File tree

7 files changed

+17
-6
lines changed

7 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# Changelog
22

33
<!-- news notes entrypoint -->
4+
## [2.1.0] - 2023-10-30
5+
6+
### Features & Improvements
7+
8+
- Added support for Python 3.12 [#379](https://github.com/python-poetry/cleo/pull/379)
9+
- Added `CONTRIBUTING.md` document [#331](https://github.com/python-poetry/cleo/pull/331)
10+
- Added `tests/` directory to sdist artifact [#327](https://github.com/python-poetry/cleo/pull/327)
11+
12+
### Bug fixes
13+
14+
- Fixed subcommand completions for Fish [#359](https://github.com/python-poetry/cleo/pull/359)
15+
- Removed deprecated `-A` option from Fish completions [#366](https://github.com/python-poetry/cleo/pull/366)
16+
- Fixed program name discovery in completions script when running as module [#231](https://github.com/python-poetry/cleo/pull/231)
17+
- Fixed ANSI coloring detection in virtual terminal environments (Windows, PyCharm) [#104](https://github.com/python-poetry/cleo/pull/104)
18+
- Fixed terminal size detection [#299](https://github.com/python-poetry/cleo/pull/299)
419

520
## [2.0.1] - 2022-11-23
621

news/299.bugfix.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/313.bugfix.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/331.docs.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/357.bugfix.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "cleo"
7-
version = "2.1.0.dev0"
7+
version = "2.1.0"
88
description = "Cleo allows you to create beautiful and testable command-line interfaces."
99
authors = [
1010
"Sébastien Eustace <[email protected]>"

src/cleo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from __future__ import annotations
22

33

4-
__version__ = "2.1.0.dev0"
4+
__version__ = "2.1.0"

0 commit comments

Comments
 (0)