changelog and init
EIVE/-/pipeline/head This commit looks good Details

This commit is contained in:
Robin Müller 2023-07-26 13:13:41 +02:00
parent 1e4e524f95
commit d2324dace9
Signed by: muellerr
GPG Key ID: 407F9B00F858F270
2 changed files with 9 additions and 2 deletions

View File

@ -10,6 +10,13 @@ list yields a list of all related PRs for each release.
# [unreleased]
# [v5.3.1] 2023-07-26
## Changed
- Adaptions for ACS CTRL strategy enum to make it compatible to software. Also make it re-usable
by putting it in global scope.
# [v5.3.0] 2023-07-26
## Added

View File

@ -1,4 +1,4 @@
__version__ = "5.3.0"
__version__ = "5.3.1"
import logging
from pathlib import Path
@ -6,7 +6,7 @@ from pathlib import Path
SW_NAME = "eive-tmtc"
VERSION_MAJOR = 5
VERSION_MINOR = 3
VERSION_REVISION = 0
VERSION_REVISION = 1
EIVE_TMTC_ROOT = Path(__file__).parent
PACKAGE_ROOT = EIVE_TMTC_ROOT.parent