Should set low version field to 0 in bump-version.
This commit is contained in:
parent
83ff6b607f
commit
5402b1b432
1 changed files with 2 additions and 0 deletions
|
@ -48,6 +48,8 @@ def parse_version(version):
|
|||
|
||||
|
||||
def increase_version(versions, index):
|
||||
for i in range(index + 1, 4):
|
||||
versions[i] = '0'
|
||||
versions[index] = str(int(versions[index]) + 1)
|
||||
return versions
|
||||
|
||||
|
|
Loading…
Reference in a new issue