Skip to content

Commit

Permalink
Release Cleo 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Secrus authored and neersighted committed Oct 30, 2023
1 parent 9ab81d1 commit f695cd3
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 6 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# Changelog

<!-- news notes entrypoint -->
## [2.1.0] - 2023-10-30

### Features & Improvements

- Added support for Python 3.12 [#379](https://github.com/python-poetry/cleo/pull/379)
- Added `CONTRIBUTING.md` document [#331](https://github.com/python-poetry/cleo/pull/331)
- Added `tests/` directory to sdist artifact [#327](https://github.com/python-poetry/cleo/pull/327)

### Bug fixes

- Fixed subcommand completions for Fish [#359](https://github.com/python-poetry/cleo/pull/359)
- Removed deprecated `-A` option from Fish completions [#366](https://github.com/python-poetry/cleo/pull/366)
- Fixed program name discovery in completions script when running as module [#231](https://github.com/python-poetry/cleo/pull/231)
- Fixed ANSI coloring detection in virtual terminal environments (Windows, PyCharm) [#104](https://github.com/python-poetry/cleo/pull/104)
- Fixed terminal size detection [#299](https://github.com/python-poetry/cleo/pull/299)

## [2.0.1] - 2022-11-23

Expand Down
1 change: 0 additions & 1 deletion news/299.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/313.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/331.docs.md

This file was deleted.

1 change: 0 additions & 1 deletion news/357.bugfix.md

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "cleo"
version = "2.1.0.dev0"
version = "2.1.0"
description = "Cleo allows you to create beautiful and testable command-line interfaces."
authors = [
"Sébastien Eustace <[email protected]>"
Expand Down
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__ = "2.1.0.dev0"
__version__ = "2.1.0"

0 comments on commit f695cd3

Please sign in to comment.