Skip to content

Commit dcb6c9c

Browse files
committed
Bump version v0.4.1 -> v0.5.0
1 parent fcd6ee1 commit dcb6c9c

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
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.4.1
2+
current_version = 0.5.0
33
commit = True
44
tag = True
55

.github/workflows/conda_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
5959
- name: "Install package"
6060
run: |
61-
$CONDA/bin/conda install -c file://$(pwd)/conda-bld flake8-dunder-all=0.4.1=py_1 -y || exit 1
61+
$CONDA/bin/conda install -c file://$(pwd)/conda-bld flake8-dunder-all=0.5.0=py_1 -y || exit 1
6262
6363
- name: "Run Tests"
6464
run: |

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/python-formate/flake8-dunder-all
102102
:alt: GitHub top language
103103

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

@@ -173,7 +173,7 @@ Sample ``.pre-commit-config.yaml``:
173173
rev: 3.8.1
174174
hooks:
175175
- id: flake8
176-
additional_dependencies: [flake8-dunder-all==0.4.1]
176+
additional_dependencies: [flake8-dunder-all==0.5.0]
177177
178178
``ensure-dunder-all`` script
179179

doc-source/index.rst

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

109109
.. |commits-since| github-shield::
110-
:commits-since: v0.4.1
110+
:commits-since: v0.5.0
111111
:alt: GitHub commits since tagged version
112112

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

doc-source/usage.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ If the ``dunder-all-alphabetical`` option is omitted the ``DALL001`` check is di
3030

3131
.. note::
3232

33-
In version ``0.4.1`` the entry point changed from ``DALL`` to ``DAL``, due to changes in flake8 itself.
33+
In version ``0.5.0`` the entry point changed from ``DALL`` to ``DAL``, due to changes in flake8 itself.
3434
However, the codes remain ``DALLXXX`` and should continue to work as normal.
3535

3636

@@ -55,7 +55,7 @@ See `pre-commit <https://github.com/pre-commit/pre-commit>`_ for instructions
5555

5656
Sample ``.pre-commit-config.yaml``:
5757

58-
.. pre-commit:flake8:: 0.4.1
58+
.. pre-commit:flake8:: 0.5.0
5959
6060
6161
Using the script as a pre-commit hook
@@ -68,4 +68,4 @@ See `pre-commit <https://github.com/pre-commit/pre-commit>`_ for instructions.
6868
Sample ``.pre-commit-config.yaml``:
6969

7070
.. pre-commit::
71-
:rev: v0.4.1
71+
:rev: v0.5.0

flake8_dunder_all/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
__author__: str = "Dominic Davis-Foster"
5454
__copyright__: str = "2020 Dominic Davis-Foster"
5555
__license__: str = "MIT"
56-
__version__: str = "0.4.1"
56+
__version__: str = "0.5.0"
5757
__email__: str = "dominic@davis-foster.co.uk"
5858

5959
__all__ = (

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.4.1"
7+
version = "0.5.0"
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-2022"
55
author: "Dominic Davis-Foster"
66
email: "dominic@davis-foster.co.uk"
7-
version: "0.4.1"
7+
version: "0.5.0"
88
username: "python-formate"
99
assignee: "domdfcoding"
1010
license: 'MIT'

0 commit comments

Comments
 (0)