From f3cedf2c9d302b77b4207cbd82b6cb6bc69cdcc3 Mon Sep 17 00:00:00 2001 From: Phil Ewels Date: Mon, 28 Feb 2022 22:02:46 +0100 Subject: [PATCH] Bump version to v1.2.0 --- CHANGELOG.md | 2 +- README.md | 2 +- src/rich_click/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d566afe4..1a86c873 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog: rich-click -## Version 1.2.0.dev0 +## Version 1.2.0 (2022-02-28) - New CLI functionality to richifiy via prefix any other tool using click, by @pawamoy [[#13](https://github.com/ewels/rich-click/pull/13)] - Distribution now available via conda-forge diff --git a/README.md b/README.md index 2ad8ca59..53c56933 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ click, formatted with rich, with minimal customisation required. - 🌈 Rich command-line formatting of click help and error messages - 💫 Nice styles be default, usage is simply `import rich_click as click` -- 💻 CLI tool to run on other people's packages (prefix the command with `rich-click`) +- 💻 CLI tool to run on _other people's_ tools (prefix the command with `rich-click`) - 🎁 Group commands and options into named panels - ❌ Well formatted error messages - 🔢 Easily give custom sort order for options and commands diff --git a/src/rich_click/__init__.py b/src/rich_click/__init__.py index 458e6db5..5715c09b 100644 --- a/src/rich_click/__init__.py +++ b/src/rich_click/__init__.py @@ -6,7 +6,7 @@ click, formatted with rich, with minimal customisation required. """ -__version__ = "1.2.0.dev0" +__version__ = "1.2.0" from click import * from click import group as click_group