diff --git a/CHANGES.rst b/CHANGES.rst index dfa660f..5ac0d04 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,17 @@ Change logs =========== +v0.1.1 +====== + +:date: 2023-05-29 JST + +Misc +---- + +* Fix classifier +* Fix README + v0.1.0 ====== @@ -9,4 +20,7 @@ v0.1.0 Initial commit. +Features +-------- + * Collect articles included ``og-article`` directive and generate feed file. 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):