diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0c0dcf3..bf5c733 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.2 +current_version = 0.0.3 commit = True tag = True diff --git a/README.rst b/README.rst index 6a83c65..28d8102 100644 --- a/README.rst +++ b/README.rst @@ -44,9 +44,9 @@ :alt: Requirements Status :target: https://requires.io/github/trevorpogue/sections/requirements/?branch=main -.. |commits-since| image:: https://img.shields.io/github/commits-since/trevorpogue/sections/v0.0.2.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/trevorpogue/sections/v0.0.3.svg :alt: Commits since latest release - :target: https://github.com/trevorpogue/sections/compare/v0.0.2...main + :target: https://github.com/trevorpogue/sections/compare/v0.0.3...main .. end-badges diff --git a/docs/conf.py b/docs/conf.py index 3c8f9fe..dd1bf32 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,7 +21,7 @@ year = '2021' author = 'Trevor Edwin Pogue' copyright = '{0}, {1}'.format(year, author) -version = release = '0.0.2' +version = release = '0.0.3' pygments_style = 'trac' templates_path = ['.'] diff --git a/docs/readme.rst b/docs/readme.rst index 50d66eb..a865bc9 100644 --- a/docs/readme.rst +++ b/docs/readme.rst @@ -44,9 +44,9 @@ :alt: Requirements Status :target: https://requires.io/github/trevorpogue/sections/requirements/?branch=main -.. |commits-since| image:: https://img.shields.io/github/commits-since/trevorpogue/sections/v0.0.2.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/trevorpogue/sections/v0.0.3.svg :alt: Commits since latest release - :target: https://github.com/trevorpogue/sections/compare/v0.0.2...main + :target: https://github.com/trevorpogue/sections/compare/v0.0.3...main .. end-badges diff --git a/setup.py b/setup.py index 7a9a548..d95140b 100755 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def readme(): setup( name='sections', - version='0.0.2', + version='0.0.3', license='MIT', description=('Flexible tree data structures for organizing lists and dicts' + ' into sections.'), diff --git a/src/sections/__init__.py b/src/sections/__init__.py index 1d33f4c..2ec1e6a 100644 --- a/src/sections/__init__.py +++ b/src/sections/__init__.py @@ -4,7 +4,7 @@ https://github.com/trevorpogue/sections """ -__version__ = '0.0.2' +__version__ = '0.0.3' __all__ = ['MetaSection', 'Section', 'SectionNone'] import sys