diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b42f36f1..a7b08008 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,7 +14,16 @@ Change Log Unreleased ---------- +[1.8.1] - 2024-04-12 +-------------------- + +Changed +~~~~~~~ + +* Updated Python classifiers to include Python 3.11. + [1.8.0] - 2024-04-11 +-------------------- Added ~~~~~ diff --git a/openedx_filters/__init__.py b/openedx_filters/__init__.py index 917ebed5..b98bfe95 100644 --- a/openedx_filters/__init__.py +++ b/openedx_filters/__init__.py @@ -3,4 +3,4 @@ """ from openedx_filters.filters import * -__version__ = "1.8.0" +__version__ = "1.8.1" diff --git a/setup.py b/setup.py index bcbbc6cf..474f3efe 100644 --- a/setup.py +++ b/setup.py @@ -158,5 +158,6 @@ def is_requirement(line): "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.11", ], )