We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 612aa2b commit d4328c0Copy full SHA for d4328c0
setup.cfg
@@ -1,14 +1,15 @@
1
-[flake8]
2
-ignore = D401
3
-max-line-length=120
4
-
5
[bumpversion]
6
-current_version = 0.2
+current_version = 0.3
7
commit = True
8
tag = True
9
parse = (?P<major>\d+)\.(?P<minor>\d+)
10
serialize = {major}.{minor}
11
+[flake8]
+ignore = D401
+max-line-length = 120
+
12
[bumpversion:file:tsa/__init__.py]
13
search = __version__ = '{current_version}'
14
replace = __version__ = '{new_version}'
15
tsa/__init__.py
@@ -1,3 +1,3 @@
"""Main application package."""
-__version__ = '0.2'
+__version__ = '0.3'
0 commit comments