From 82d7bccb4aa990aca8ac68da2c63008990670247 Mon Sep 17 00:00:00 2001 From: Philipp Wullstein-Kammler Date: Mon, 20 Apr 2026 10:06:48 +0200 Subject: [PATCH] TRLC Release 2.0.4 --- CHANGELOG.md | 2 +- trlc/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15c5201..7332fc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,7 +25,7 @@ generated in the following situations: ## Changelog -### 2.0.4-dev +### 2.0.4 * [TRLC_RST] Add tool to convert TRLC Requirements to Sphinx RST Files * [TRLC] Add support for Python 3.14. diff --git a/trlc/version.py b/trlc/version.py index eb452cd..3b5842e 100644 --- a/trlc/version.py +++ b/trlc/version.py @@ -19,7 +19,7 @@ # along with TRLC. If not, see . VERSION_TUPLE = (2, 0, 4) -VERSION_SUFFIX = "dev" +VERSION_SUFFIX = "" TRLC_VERSION = ("%u.%u.%u" % VERSION_TUPLE) + \ ("-%s" % VERSION_SUFFIX if VERSION_SUFFIX else "")