diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 47eef33..74b09ca 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,18 @@ Changelog ========= +`2025.2 `_ +--------------------------------------------------------------------------- + +- Note minimum requirements for Sphinx (#216) + Contributed by Adam Turner +- Horizontally centre the sidebar collapse button (#219) + Contributed by Tomas Roun +- Make sidebar width more flexible (#218) + Contributed by Tomas Roun +- Set ``__version__`` in the runtime package (#222) + Contributed by Adam Turner + `2024.12 `_ ----------------------------------------------------------------------------- diff --git a/python_docs_theme/__init__.py b/python_docs_theme/__init__.py index d8dd2c7..5a84c84 100644 --- a/python_docs_theme/__init__.py +++ b/python_docs_theme/__init__.py @@ -14,7 +14,7 @@ from sphinx.application import Sphinx from sphinx.util.typing import ExtensionMetadata -__version__ = "2024.12" +__version__ = "2025.2" THEME_PATH = Path(__file__).resolve().parent