Skip to content

Commit d5d8f60

Browse files
committed
Bump version v0.1.6 -> v0.1.7
1 parent ad73ab8 commit d5d8f60

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.6
2+
current_version = 0.1.7
33
commit = True
44
tag = True
55

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ flake8-dunder-all
101101
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/flake8-dunder-all
102102
:alt: GitHub top language
103103

104-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/flake8-dunder-all/v0.1.6
104+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/flake8-dunder-all/v0.1.7
105105
:target: https://github.com/domdfcoding/flake8-dunder-all/pulse
106106
:alt: GitHub commits since tagged version
107107

@@ -177,7 +177,7 @@ Sample ``.pre-commit-config.yaml``:
177177
rev: 3.8.1
178178
hooks:
179179
- id: flake8
180-
additional_dependencies: [flake8-dunder-all==0.1.6]
180+
additional_dependencies: [flake8-dunder-all==0.1.7]
181181
182182
``ensure-dunder-all`` script
183183

__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
2020-2021 Dominic Davis-Foster <dominic@davis-foster.co.uk>
2727
"""
2828

29-
__version__ = "0.1.6"
29+
__version__ = "0.1.7"
3030
repo_root = pathlib.Path(__file__).parent
3131
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
3232
extras_require = {}

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ flake8-dunder-all
105105
:alt: GitHub top language
106106

107107
.. |commits-since| github-shield::
108-
:commits-since: v0.1.6
108+
:commits-since: v0.1.7
109109
:alt: GitHub commits since tagged version
110110

111111
.. |commits-latest| github-shield::

doc-source/usage.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ See `pre-commit <https://github.com/pre-commit/pre-commit>`_ for instructions
3535

3636
Sample ``.pre-commit-config.yaml``:
3737

38-
.. pre-commit:flake8:: 0.1.6
38+
.. pre-commit:flake8:: 0.1.7
3939
4040
4141
Using the script as a pre-commit hook
@@ -48,4 +48,4 @@ See `pre-commit <https://github.com/pre-commit/pre-commit>`_ for instructions.
4848
Sample ``.pre-commit-config.yaml``:
4949

5050
.. pre-commit::
51-
:rev: v0.1.6
51+
:rev: v0.1.7

flake8_dunder_all/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
__author__: str = "Dominic Davis-Foster"
4747
__copyright__: str = "2020 Dominic Davis-Foster"
4848
__license__: str = "MIT"
49-
__version__: str = "0.1.6"
49+
__version__: str = "0.1.7"
5050
__email__: str = "dominic@davis-foster.co.uk"
5151

5252
__all__ = ["Visitor", "Plugin", "check_and_add_all", "DALL000"]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "whey"
44

55
[project]
66
name = "flake8-dunder-all"
7-
version = "0.1.6"
7+
version = "0.1.7"
88
description = "A Flake8 plugin and pre-commit hook which checks to ensure modules have defined '__all__'."
99
readme = "README.rst"
1010
keywords = [ "flake8",]

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ modname: flake8-dunder-all
44
copyright_years: "2020-2021"
55
author: "Dominic Davis-Foster"
66
email: "dominic@davis-foster.co.uk"
7-
version: "0.1.6"
7+
version: "0.1.7"
88
username: "domdfcoding"
99
license: 'MIT'
1010
short_desc: "A Flake8 plugin and pre-commit hook which checks to ensure modules have defined '__all__'."

0 commit comments

Comments
 (0)