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 "")