From 04f5a769629ae79048f68a37d0555e458c9f9a94 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 3 Feb 2023 16:41:09 +0100 Subject: [PATCH] prepare for v2.10.0 --- CHANGELOG.md | 4 ++++ eive_tmtc/__init__.py | 4 ++-- setup.cfg | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce79aa2..c51c82f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ list yields a list of all related PRs for each release. # [unreleased] +# [v2.10.0] 2023-02-03 + +tmtccmd v4.0.0rc0 + ## Changed - Updated ACS SS commands for OBSW ACS SS update. diff --git a/eive_tmtc/__init__.py b/eive_tmtc/__init__.py index 38e3ff5..a0c603b 100644 --- a/eive_tmtc/__init__.py +++ b/eive_tmtc/__init__.py @@ -3,10 +3,10 @@ from pathlib import Path SW_NAME = "eive-tmtc" VERSION_MAJOR = 2 -VERSION_MINOR = 9 +VERSION_MINOR = 10 VERSION_REVISION = 0 -__version__ = "2.9.0" +__version__ = "2.10.0" EIVE_TMTC_ROOT = Path(__file__).parent PACKAGE_ROOT = EIVE_TMTC_ROOT.parent diff --git a/setup.cfg b/setup.cfg index ec90382..bcbece4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,8 +27,8 @@ classifiers = [options] install_requires = - # tmtccmd @ git+https://github.com/robamu-org/tmtccmd@v4.0.0a3 - tmtccmd @ git+https://github.com/robamu-org/tmtccmd@f53f3beb9bc089add542d6e20c568093ef56c49a#egg=tmtccmd + tmtccmd @ git+https://github.com/robamu-org/tmtccmd@v4.0.0rc0 + # tmtccmd @ git+https://github.com/robamu-org/tmtccmd@#egg=tmtccmd packages = find: python_requires = >=3.10 include_package_data = True