Skip to content

Commit 67b18c7

Browse files
committed
Bump version v0.1.4 -> v0.1.5
1 parent 3509fa5 commit 67b18c7

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
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.4
2+
current_version = 0.1.5
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
@@ -55,7 +55,7 @@ jobs:
5555
5656
- name: "Install package"
5757
run: |
58-
$CONDA/bin/conda install -c file://$(pwd)/conda-bld flake8-slots=0.1.4=py_1 -y || exit 1
58+
$CONDA/bin/conda install -c file://$(pwd)/conda-bld flake8-slots=0.1.5=py_1 -y || exit 1
5959
6060
- name: "Run Tests"
6161
run: |

README.rst

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

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

@@ -174,4 +174,4 @@ Sample ``.pre-commit-config.yaml``:
174174
rev: 3.8.1
175175
hooks:
176176
- id: flake8
177-
additional_dependencies: [flake8-slots==0.1.4]
177+
additional_dependencies: [flake8-slots==0.1.5]

doc-source/index.rst

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

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

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

doc-source/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ See `pre-commit <https://github.com/pre-commit/pre-commit>`_ for instructions
3333

3434
Sample ``.pre-commit-config.yaml``:
3535

36-
.. pre-commit:flake8:: 0.1.4
36+
.. pre-commit:flake8:: 0.1.5

flake8_slots/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
__author__: str = "Dominic Davis-Foster"
3838
__copyright__: str = "2020-2021 Dominic Davis-Foster"
3939
__license__: str = "MIT License"
40-
__version__: str = "0.1.4"
40+
__version__: str = "0.1.5"
4141
__email__: str = "dominic@davis-foster.co.uk"
4242

4343
__all__ = ["Visitor", "Plugin", "SLOT000", "SLOT001", "SLOT002"]

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-slots"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "A Flake8 plugin to require __slots__ to be defined for subclasses of immutable types."
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-slots
44
copyright_years: "2020-2021"
55
author: "Dominic Davis-Foster"
66
email: "dominic@davis-foster.co.uk"
7-
version: "0.1.4"
7+
version: "0.1.5"
88
username: "python-formate"
99
assignee: "domdfcoding"
1010
primary_conda_channel: "domdfcoding"

0 commit comments

Comments
 (0)