From 4ef8ec896522fdecde2570fa9494262c5a176dfa Mon Sep 17 00:00:00 2001 From: Kazuya Takei Date: Fri, 5 May 2023 03:43:28 +0900 Subject: [PATCH] release: Bump version 0.1.0 -> 0.1.1 --- CHANGES.rst | 11 +++++++++++ setup.cfg | 2 +- src/atsphinx/footnotes.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) 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):