diff --git a/CHANGELOG.md b/CHANGELOG.md index a942ab6..18f4774 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ list yields a list of all related PRs for each release. # [unreleased] +# [v3.1.2] 2023-06-19 + +## Fixed + +- Pin `tmtccmd` to v4.1.3 to enforce correct `spacepackets` version on install + # [v3.1.1] 2023-04-17 ## Added diff --git a/eive_tmtc/__init__.py b/eive_tmtc/__init__.py index fa6d179..a4fe42a 100644 --- a/eive_tmtc/__init__.py +++ b/eive_tmtc/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.1.1" +__version__ = "3.1.2" import logging from pathlib import Path @@ -6,7 +6,7 @@ from pathlib import Path SW_NAME = "eive-tmtc" VERSION_MAJOR = 3 VERSION_MINOR = 1 -VERSION_REVISION = 1 +VERSION_REVISION = 2 EIVE_TMTC_ROOT = Path(__file__).parent PACKAGE_ROOT = EIVE_TMTC_ROOT.parent diff --git a/pyproject.toml b/pyproject.toml index c1ef478..92d863f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ "Topic :: Scientific/Engineering" ] dependencies = [ - "tmtccmd ~= 4.1", + "tmtccmd ~= 4.1.3", "python-dateutil ~= 2.8", # tmtccmd @ git+https://github.com/robamu-org/tmtccmd@#egg=tmtccmd ]