Skip to content

Commit 192faac

Browse files
committed
Bump version v0.1.1 -> v0.1.2
1 parent 6c6d287 commit 192faac

File tree

8 files changed

+11
-12
lines changed

8 files changed

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

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ flake8-slots
101101
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/flake8-slots
102102
:alt: GitHub top language
103103

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

__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.1"
29+
__version__ = "0.1.2"
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-slots
105105
:alt: GitHub top language
106106

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

111111
.. |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.1
36+
.. pre-commit:flake8:: 0.1.2

flake8_slots/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
__author__: str = "Dominic Davis-Foster"
3737
__copyright__: str = "2020-2021 Dominic Davis-Foster"
3838
__license__: str = "MIT License"
39-
__version__: str = "0.1.1"
39+
__version__: str = "0.1.2"
4040
__email__: str = "dominic@davis-foster.co.uk"
4141

4242
__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.1"
7+
version = "0.1.2"
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: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,17 @@ modname: flake8-slots
44
copyright_years: "2020-2021"
55
author: "Dominic Davis-Foster"
66
email: "dominic@davis-foster.co.uk"
7-
version: "0.1.1"
7+
version: "0.1.2"
88
username: "domdfcoding"
99
license: 'MIT'
1010
short_desc: "A Flake8 plugin to require __slots__ to be defined for subclasses of immutable types."
11-
min_coverage: 100
1211

1312
python_deploy_version: 3.6
1413
use_whey: true
14+
min_coverage: 100
1515
docs_fail_on_warning: true
16+
sphinx_html_theme: furo
17+
standalone_contrib_guide: true
1618

1719
conda_channels:
1820
- conda-forge
@@ -41,9 +43,6 @@ entry_points:
4143
flake8.extension:
4244
- SLOT=flake8_slots:Plugin
4345

44-
sphinx_html_theme: furo
45-
standalone_contrib_guide: true
46-
4746
keywords:
4847
- flake8
4948

0 commit comments

Comments
 (0)