diff --git a/CHANGES.rst b/CHANGES.rst index 305eb5ce..df9147ea 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,6 +5,9 @@ CHANGES Unreleased ---------- + +2024/04/10 0.31.1 +----------------- - Fix compatibility issue with Python 3.8, by updating to sphinx-design-elements 0.3.1 diff --git a/src/crate/theme/rtd/__init__.py b/src/crate/theme/rtd/__init__.py index fdd2e727..2e4688a4 100644 --- a/src/crate/theme/rtd/__init__.py +++ b/src/crate/theme/rtd/__init__.py @@ -23,7 +23,7 @@ import os -VERSION = (0, 31, 0) +VERSION = (0, 31, 1) __version__ = ".".join(str(v) for v in VERSION) __version_full__ = __version__