Skip to content

Commit 7bf7c98

Browse files
committed
Bump version: 0.0.1 → 0.0.2
1 parent 342b69a commit 7bf7c98

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

.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.0.1
2+
current_version = 0.0.2
33
commit = True
44
tag = True
55

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ flake8-dunder-all
9191
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/flake8-dunder-all
9292
:alt: GitHub top language
9393

94-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/flake8-dunder-all/v0.0.1
94+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/flake8-dunder-all/v0.0.2
9595
:target: https://github.com/domdfcoding/flake8-dunder-all/pulse
9696
:alt: GitHub commits since tagged version
9797

__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
2020 Dominic Davis-Foster <dominic@davis-foster.co.uk>
4040
"""
4141

42-
__version__ = "0.0.1"
42+
__version__ = "0.0.2"
4343
modname = "flake8-dunder-all"
4444
pypi_name = "flake8-dunder-all"
4545
import_name = "flake8_dunder_all"

doc-source/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ flake8-dunder-all
9090
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/flake8-dunder-all
9191
:alt: GitHub top language
9292

93-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/flake8-dunder-all/v0.0.1
93+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/flake8-dunder-all/v0.0.2
9494
:target: https://github.com/domdfcoding/flake8-dunder-all/pulse
9595
:alt: GitHub commits since tagged version
9696

@@ -165,7 +165,7 @@ Sample `.pre-commit-config.yaml`:
165165
rev: 3.8.1
166166
hooks:
167167
- id: flake8
168-
additional_dependencies: [flake8-dunder-all==0.0.1]
168+
additional_dependencies: [flake8-dunder-all==0.0.2]
169169
170170
171171
Using the script as a pre-commit hook
@@ -180,7 +180,7 @@ Sample `.pre-commit-config.yaml`:
180180
.. code-block:: yaml
181181
182182
- repo: https://github.com/domdfcoding/flake8-dunder-all
183-
rev: v0.0.1
183+
rev: v0.0.2
184184
hooks:
185185
- id: ensure-dunder-all
186186

flake8_dunder_all/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
__author__: str = "Dominic Davis-Foster"
4545
__copyright__: str = "2020 Dominic Davis-Foster"
4646
__license__: str = "MIT"
47-
__version__: str = "0.0.1"
47+
__version__: str = "0.0.2"
4848
__email__: str = "dominic@davis-foster.co.uk"
4949

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

repo_helper.yml

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

0 commit comments

Comments
 (0)