forked from samschott/maestral-cocoa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (40 loc) · 1.03 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[bumpversion]
current_version = 1.5.3.dev0
commit = True
tag = False
parse = ^
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
(\.(?P<prekind>a|alpha|b|beta|d|dev|rc)
(?P<pre>\d+) # pre-release version num
)?
(\.(?P<postkind>post)(?P<post>\d+))? # post-release
serialize =
{major}.{minor}.{patch}.{prekind}{pre}.{postkind}{post}
{major}.{minor}.{patch}.{prekind}{pre}
{major}.{minor}.{patch}.{postkind}{post}
{major}.{minor}.{patch}
[bumpversion:part:prekind]
optional_value = _
values =
dev
_
[bumpversion:part:postkind]
optional_value = _
values =
_
post
[bumpversion:file:macOS/Xcode/Maestral/Maestral.xcodeproj/project.pbxproj]
search = MARKETING_VERSION = {current_version}
replace = MARKETING_VERSION = {new_version}
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:pyproject.toml]
[bumpversion:file:src/maestral_cocoa/__init__.py]
[flake8]
ignore = E203,E501,W503,H306,F403
statistics = True
filename = src/
[mypy]
ignore_missing_imports = True
files = src