Skip to content

Commit a5e2fa6

Browse files
committed
fix: Use semver -alpha1 style versioning for python
1 parent 457d1d6 commit a5e2fa6

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)