From f695cd3de3de03dc617dcb198d26ba2a02081008 Mon Sep 17 00:00:00 2001 From: Bartek Sokorski Date: Mon, 30 Oct 2023 18:18:54 +0100 Subject: [PATCH] Release Cleo 2.1 --- CHANGELOG.md | 15 +++++++++++++++ news/299.bugfix.md | 1 - news/313.bugfix.md | 1 - news/331.docs.md | 1 - news/357.bugfix.md | 1 - pyproject.toml | 2 +- src/cleo/__init__.py | 2 +- 7 files changed, 17 insertions(+), 6 deletions(-) delete mode 100644 news/299.bugfix.md delete mode 100644 news/313.bugfix.md delete mode 100644 news/331.docs.md delete mode 100644 news/357.bugfix.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 9feea8d2..90e9bd65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,21 @@ # Changelog +## [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 diff --git a/news/299.bugfix.md b/news/299.bugfix.md deleted file mode 100644 index 1227e19c..00000000 --- a/news/299.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed terminal size detection. \ No newline at end of file diff --git a/news/313.bugfix.md b/news/313.bugfix.md deleted file mode 100644 index 8184dbac..00000000 --- a/news/313.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed ANSI coloring detection in virtual terminal environments (Windows, PyCharm) \ No newline at end of file diff --git a/news/331.docs.md b/news/331.docs.md deleted file mode 100644 index 641bdd81..00000000 --- a/news/331.docs.md +++ /dev/null @@ -1 +0,0 @@ -Added CONTRIBUTING.md file. diff --git a/news/357.bugfix.md b/news/357.bugfix.md deleted file mode 100644 index 3efdd799..00000000 --- a/news/357.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fixed subcommand completions for Fish. diff --git a/pyproject.toml b/pyproject.toml index 2398bde0..2e808325 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 " diff --git a/src/cleo/__init__.py b/src/cleo/__init__.py index eced167d..86e16da9 100644 --- a/src/cleo/__init__.py +++ b/src/cleo/__init__.py @@ -1,4 +1,4 @@ from __future__ import annotations -__version__ = "2.1.0.dev0" +__version__ = "2.1.0"