diff --git a/CHANGES.rst b/CHANGES.rst index dfa660f..f20c2bd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,21 @@ Change logs =========== +v0.1.1 +====== + +:date: 2024-12-04 JST + +Fixes +----- + +* Render link element as string in output html. + +Others +------ + +* Use mise and uv for workspace management. + v0.1.0 ====== diff --git a/setup.cfg b/setup.cfg index f48dbc3..1ed5521 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = True tag = False message = release: Bump version {current_version} -> {new_version} diff --git a/src/atsphinx/feed/__init__.py b/src/atsphinx/feed/__init__.py index 6d65f99..cf88b64 100644 --- a/src/atsphinx/feed/__init__.py +++ b/src/atsphinx/feed/__init__.py @@ -4,7 +4,7 @@ from . import processors -__version__ = "0.1.0" +__version__ = "0.1.1" def validate_config(app: Sphinx, config: Config):