From eeeda2d0129a19acec82eae76a8908aabda54779 Mon Sep 17 00:00:00 2001 From: dwreeves Date: Tue, 7 May 2024 08:57:22 -0400 Subject: [PATCH] update --- CHANGELOG.md | 5 +++++ src/rich_click/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18ad77b..ac3e739 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## Version 1.8.0 (2023-05-07) + +- Fixed bad deprecation warning with `highlighter` +- Fixed incompatibility with Click 9. + ## Version 1.8.0 (2023-04-30) - Add `--rich-config` and `--output` options to the `rich-click` CLI. diff --git a/src/rich_click/__init__.py b/src/rich_click/__init__.py index 56d2109..8e0d246 100644 --- a/src/rich_click/__init__.py +++ b/src/rich_click/__init__.py @@ -6,7 +6,7 @@ customisation required. """ -__version__ = "1.8.0" +__version__ = "1.8.1" # Import the entire click API here. # We need to manually import these instead of `from click import *` to force