Skip to content

Commit c488548

Browse files
authored
Merge pull request #64 from TankerHQ/tim/semver
fix: Use semver -alpha1 style versioning for python
2 parents 457d1d6 + a5e2fa6 commit c488548

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

tbump.toml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ regex = '''
88
(?P<minor>\d+)
99
\.
1010
(?P<patch>\d+)
11-
(
12-
(
13-
a(?P<alpha>\d+)
14-
|
15-
b(?P<beta>\d+)
16-
)
17-
)?
11+
(
12+
-
13+
(?P<lifecycle>alpha|beta)
14+
(?P<release>\d+)
15+
)?
1816
)
1917
'''
2018

0 commit comments

Comments
 (0)