Updated tools

This commit is contained in:
Sven Heidemann 2022-06-27 20:52:27 +02:00
parent 63ad13e09a
commit 4b9e428abb
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
"LicenseName": "MIT",
"LicenseDescription": "MIT, see LICENSE for more details.",
"Dependencies": [
"cpl-core>=2022.6.17.dev8"
"cpl-core>=2022.6.0"
],
"PythonVersion": ">=3.10.4",
"PythonPath": {},

View File

@ -59,7 +59,7 @@ class Application(ApplicationABC):
version[VersionSettingsNameEnum.major.value] = branch.split('.')[0]
version[VersionSettingsNameEnum.minor.value] = branch.split('.')[1]
if len(branch.split('.')) == 2:
version[VersionSettingsNameEnum.micro.value] = 0
version[VersionSettingsNameEnum.micro.value] = f'0{suffix}'
else:
version[VersionSettingsNameEnum.micro.value] = f'{branch.split(".")[2]}{suffix}'
except Exception as e:

View File

@ -16,7 +16,7 @@
"LicenseName": "MIT",
"LicenseDescription": "MIT, see LICENSE for more details.",
"Dependencies": [
"cpl-core>=2022.6.17.dev8",
"cpl-core>=2022.6.0",
"gitpython==3.1.27"
],
"PythonVersion": ">=3.10.4",