From d2324dace938aff7179b7cf744fd82907a652ef5 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 26 Jul 2023 13:13:41 +0200 Subject: [PATCH] changelog and init --- CHANGELOG.md | 7 +++++++ eive_tmtc/__init__.py | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89e2ba9..f020c1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/eive_tmtc/__init__.py b/eive_tmtc/__init__.py index 589d82f..7215fe2 100644 --- a/eive_tmtc/__init__.py +++ b/eive_tmtc/__init__.py @@ -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