and a new patch release

This commit is contained in:
Robin Müller 2023-01-12 17:12:16 +01:00
parent 677a0d70cc
commit d652c4663b
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
2 changed files with 5 additions and 3 deletions

View File

@ -8,7 +8,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
The [milestone](https://egit.irs.uni-stuttgart.de/eive/eive-obsw/milestones)
list yields a list of all related PRs for each release.
# [unreleased]
# [v2.1.1] 12.01.2023
- Typo in `setup.cfg`, missing version prefix `v` for `tmtccmd`
# [v2.1.0] 12.01.2023

View File

@ -3,9 +3,9 @@ from pathlib import Path
SW_NAME = "eive-tmtc"
VERSION_MAJOR = 2
VERSION_MINOR = 1
VERSION_REVISION = 0
VERSION_REVISION = 1
__version__ = "2.1.0"
__version__ = "2.1.1"
EIVE_TMTC_ROOT = Path(__file__).parent
PACKAGE_ROOT = EIVE_TMTC_ROOT.parent