From d652c4663b6e738345799026a16d6d2f00d7e65d Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 12 Jan 2023 17:12:16 +0100 Subject: [PATCH] and a new patch release --- CHANGELOG.md | 4 +++- eive_tmtc/__init__.py | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f695dc4..94615a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/eive_tmtc/__init__.py b/eive_tmtc/__init__.py index 379a947..c776e3f 100644 --- a/eive_tmtc/__init__.py +++ b/eive_tmtc/__init__.py @@ -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