diff --git a/docs/src/release_notes.rst b/docs/src/release_notes.rst index 788eb1e..8473aa7 100644 --- a/docs/src/release_notes.rst +++ b/docs/src/release_notes.rst @@ -8,8 +8,8 @@ These release notes are based on sphinx-codeautolink adheres to `Semantic Versioning `_. -Unreleased ----------- +0.15.2 (2024-06-03) +------------------- - Fix matching of ``import a, b`` (:issue:`142`) 0.15.1 (2024-04-17) diff --git a/src/sphinx_codeautolink/__init__.py b/src/sphinx_codeautolink/__init__.py index 7433f76..8f02342 100644 --- a/src/sphinx_codeautolink/__init__.py +++ b/src/sphinx_codeautolink/__init__.py @@ -5,7 +5,7 @@ from .extension import SphinxCodeAutoLink, backref, directive from .extension.block import clean_ipython, clean_pycon # NOQA -__version__ = "0.15.1" +__version__ = "0.15.2" def setup(app: Sphinx):