diff --git a/CHANGELOG.md b/CHANGELOG.md index 829da35..b5a2ca2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.3.0 (February 2024) + +* 🔧 Move to sphinx-extensions2 organisation by @chrisjsewell in https://github.com/sphinx-extensions2/sphinx-sqlalchemy/pull/17 +* 👌 Improve parsing of multiline docstrings by @AlexTorx in https://github.com/sphinx-extensions2/sphinx-sqlalchemy/pull/15 +* 🐛 FIX: Exception when rendering `CheckConstraints` by @Starbat in https://github.com/sphinx-extensions2/sphinx-sqlalchemy/pull/19 + ## v0.2.0 (November 2023) * 🐛 FIX: Skip non-columns by @rclaasen in https://github.com/sphinx-extensions2/sphinx-sqlalchemy/pull/2 diff --git a/sphinx_sqlalchemy/__init__.py b/sphinx_sqlalchemy/__init__.py index 1178a1b..3ac33ba 100644 --- a/sphinx_sqlalchemy/__init__.py +++ b/sphinx_sqlalchemy/__init__.py @@ -2,7 +2,7 @@ from typing import TYPE_CHECKING -__version__ = "0.2.0" +__version__ = "0.3.0" if TYPE_CHECKING: from sphinx.application import Sphinx