Skip to content

Commit d0ecc09

Browse files
committed
Bump version v0.1.1 -> v0.2.0
1 parent 8f27622 commit d0ecc09

File tree

8 files changed

+19
-20
lines changed

8 files changed

+19
-20
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.2.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
@@ -48,7 +48,7 @@ jobs:
4848
4949
- name: "Install package"
5050
run: |
51-
$CONDA/bin/conda install -c file://$(pwd)/conda-bld flake8-helper=0.1.1=py_1 -y || exit 1
51+
$CONDA/bin/conda install -c file://$(pwd)/conda-bld flake8-helper=0.2.0=py_1 -y || exit 1
5252
5353
- name: "Run Tests"
5454
run: |

README.rst

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

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

doc-source/index.rst

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

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

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

flake8_helper/__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 = "2021 Dominic Davis-Foster"
3838
__license__: str = "MIT License"
39-
__version__: str = "0.1.1"
39+
__version__: str = "0.2.0"
4040
__email__: str = "dominic@davis-foster.co.uk"
4141

4242
_P = TypeVar("_P", bound="Plugin")

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "whey"
44

55
[project]
66
name = "flake8-helper"
7-
version = "0.1.1"
7+
version = "0.2.0"
88
description = "A helper library for Flake8 plugins."
99
readme = "README.rst"
1010
keywords = [ "flake8",]
@@ -136,6 +136,13 @@ show_error_codes = true
136136
[tool.snippet-fmt]
137137
directives = [ "code-block",]
138138

139+
[tool.whey-pth]
140+
name = "flake8_helper.pth"
141+
pth-content = "# Ensure these are imported before the current directory appears on path\nimport code\nimport doctest\n"
142+
143+
[tool.whey.builders]
144+
wheel = "whey_pth_wheel"
145+
139146
[tool.dependency-dash."requirements.txt"]
140147
order = 10
141148

@@ -156,10 +163,3 @@ reformat = true
156163
[tool.snippet-fmt.languages.ini]
157164

158165
[tool.snippet-fmt.languages.json]
159-
160-
[tool.whey-pth]
161-
name = "flake8_helper.pth"
162-
pth-content = "# Ensure these are imported before the current directory appears on path\nimport code\nimport doctest\n"
163-
164-
[tool.whey.builders]
165-
wheel = "whey_pth_wheel"

repo_helper.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ modname: flake8-helper
44
copyright_years: "2021"
55
author: "Dominic Davis-Foster"
66
email: "dominic@davis-foster.co.uk"
7-
version: "0.1.1"
7+
version: "0.2.0"
88
username: "python-formate"
99
assignee: "domdfcoding"
1010
primary_conda_channel: "domdfcoding"
@@ -55,4 +55,4 @@ sphinx_conf_epilogue:
5555
- autosummary_widths_builders = ["latex"]
5656

5757
tox_unmanaged:
58-
- check-wheel-contents
58+
- check-wheel-contents

tox.ini

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# * flake8
1313
# * coverage:run
1414
# * coverage:report
15-
# * check-wheel-contents
1615
# * pytest
1716

1817
[tox]
@@ -159,14 +158,14 @@ exclude_lines =
159158
if typing.TYPE_CHECKING:
160159
if __name__ == .__main__.:
161160
161+
[pytest]
162+
addopts = --color yes --durations 25
163+
timeout = 300
164+
162165
[check-wheel-contents]
163166
ignore = W002,W102
164167
toplevel = flake8_helper
165168
package = flake8_helper
166169
167-
[pytest]
168-
addopts = --color yes --durations 25
169-
timeout = 300
170-
171170
[dep_checker]
172171
allowed_unused = flake8

0 commit comments

Comments
 (0)