Skip to content

Commit

Permalink
Bump version v0.4.2 -> v0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Mar 11, 2021
1 parent 5079bfc commit 55f90a1
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.2
current_version = 0.4.3
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ formate
.. |language| image:: https://img.shields.io/github/languages/top/repo-helper/formate
:alt: GitHub top language

.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/formate/v0.4.2
.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/formate/v0.4.3
:target: https://github.com/repo-helper/formate/pulse
:alt: GitHub commits since tagged version

Expand Down
2 changes: 1 addition & 1 deletion __pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
2020-2021 Dominic Davis-Foster <dominic@davis-foster.co.uk>
"""

__version__ = "0.4.2"
__version__ = "0.4.3"
repo_root = pathlib.Path(__file__).parent
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
extras_require = {}
2 changes: 1 addition & 1 deletion doc-source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ formate
:alt: GitHub top language

.. |commits-since| github-shield::
:commits-since: v0.4.2
:commits-since: v0.4.3
:alt: GitHub commits since tagged version

.. |commits-latest| github-shield::
Expand Down
2 changes: 1 addition & 1 deletion doc-source/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To do so, add the following to your
`.pre-commit-config.yaml <https://pre-commit.com/#2-add-a-pre-commit-configuration>`_ file:

.. pre-commit::
:rev: 0.4.2
:rev: 0.4.3
:hooks: formate
:args: --verbose

Expand Down
4 changes: 2 additions & 2 deletions formate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
__author__: str = "Dominic Davis-Foster"
__copyright__: str = "2020-2021 Dominic Davis-Foster"
__license__: str = "MIT License"
__version__: str = "0.4.2"
__version__: str = "0.4.3"
__email__: str = "dominic@davis-foster.co.uk"

# TODO: Ideas for hooks
Expand All @@ -68,7 +68,7 @@ def call_hooks(hooks: Iterable[Hook], source: str, filename: PathLike) -> str:
:returns: The reformatted source.
.. versionchanged:: 0.4.2 Added the ``filename`` argument.
.. versionchanged:: 0.4.3 Added the ``filename`` argument.
"""

for hook in hooks:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "whey"

[project]
name = "formate"
version = "0.4.2"
version = "0.4.3"
description = "Python formatting mate."
readme = "README.rst"
keywords = [ "formatting", "linting",]
Expand Down
2 changes: 1 addition & 1 deletion repo_helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ author: 'Dominic Davis-Foster'
email: 'dominic@davis-foster.co.uk'
username: 'repo-helper'
assignee: 'domdfcoding'
version: '0.4.2'
version: '0.4.3'
license: 'MIT'
short_desc: 'Python formatting mate.'

Expand Down

0 comments on commit 55f90a1

Please sign in to comment.