From b143551873f493e7885848dbe6b0eab2945894a6 Mon Sep 17 00:00:00 2001 From: Dominic Davis-Foster Date: Tue, 14 Sep 2021 07:22:55 +0100 Subject: [PATCH] Bump version v0.1.0 -> v0.1.1 --- .bumpversion.cfg | 2 +- README.rst | 2 +- doc-source/index.rst | 2 +- doc-source/usage.rst | 2 +- pyproject.toml | 2 +- repo_helper.yml | 2 +- snippet_fmt/__init__.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index afa04de..a992c57 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = True tag = True diff --git a/README.rst b/README.rst index 013829e..3f268cf 100644 --- a/README.rst +++ b/README.rst @@ -91,7 +91,7 @@ snippet-fmt .. |language| image:: https://img.shields.io/github/languages/top/python-formate/snippet-fmt :alt: GitHub top language -.. |commits-since| image:: https://img.shields.io/github/commits-since/python-formate/snippet-fmt/v0.1.0 +.. |commits-since| image:: https://img.shields.io/github/commits-since/python-formate/snippet-fmt/v0.1.1 :target: https://github.com/python-formate/snippet-fmt/pulse :alt: GitHub commits since tagged version diff --git a/doc-source/index.rst b/doc-source/index.rst index 936c77a..53d90a2 100644 --- a/doc-source/index.rst +++ b/doc-source/index.rst @@ -97,7 +97,7 @@ snippet-fmt :alt: GitHub top language .. |commits-since| github-shield:: - :commits-since: v0.1.0 + :commits-since: v0.1.1 :alt: GitHub commits since tagged version .. |commits-latest| github-shield:: diff --git a/doc-source/usage.rst b/doc-source/usage.rst index 20cede1..e679de5 100644 --- a/doc-source/usage.rst +++ b/doc-source/usage.rst @@ -22,7 +22,7 @@ To do so, add the following to your `.pre-commit-config.yaml `_ file: .. pre-commit:: - :rev: 0.1.0 + :rev: 0.1.1 :hooks: snippet-fmt :args: --verbose diff --git a/pyproject.toml b/pyproject.toml index 1aa595d..f052d7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "whey" [project] name = "snippet-fmt" -version = "0.1.0" +version = "0.1.1" description = "Format and validate code snippets in reStructuredText files." readme = "README.rst" keywords = [ "docs", "formatting", "linting",] diff --git a/repo_helper.yml b/repo_helper.yml index 92e9d3b..898ac11 100644 --- a/repo_helper.yml +++ b/repo_helper.yml @@ -6,7 +6,7 @@ author: 'Dominic Davis-Foster' email: 'dominic@davis-foster.co.uk' username: 'python-formate' assignee: 'domdfcoding' -version: '0.1.0' +version: '0.1.1' license: 'MIT' short_desc: 'Format and validate code snippets in reStructuredText files.' diff --git a/snippet_fmt/__init__.py b/snippet_fmt/__init__.py index fb78453..468ec87 100644 --- a/snippet_fmt/__init__.py +++ b/snippet_fmt/__init__.py @@ -53,7 +53,7 @@ __author__: str = "Dominic Davis-Foster" __copyright__: str = "2021 Dominic Davis-Foster" __license__: str = "MIT License" -__version__: str = "0.1.0" +__version__: str = "0.1.1" __email__: str = "dominic@davis-foster.co.uk" __all__ = ["CodeBlockError", "RSTReformatter", "reformat_file"]