diff --git a/CHANGES.rst b/CHANGES.rst index 4242c78..cedf547 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,17 @@ Change logs =========== +v0.1.1 +====== + +:date: 2023-05-05 (JST) + +Fixes +----- + +* Set correct classifies for PyPI. +* Fix workflow to upload package into GitHub. + v0.1.0 ====== diff --git a/setup.cfg b/setup.cfg index 5c20538..df74ef5 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/footnotes.py b/src/atsphinx/footnotes.py index 5f823be..2633e34 100644 --- a/src/atsphinx/footnotes.py +++ b/src/atsphinx/footnotes.py @@ -2,7 +2,7 @@ from docutils import nodes from sphinx.application import Sphinx -__version__ = "0.1.0" +__version__ = "0.1.1" def collect_footnotes(app: Sphinx, doctree: nodes.document):