From 274bf8c4f367e1227a1578979f0ba87ef113b8f9 Mon Sep 17 00:00:00 2001 From: Florian Schanda Date: Wed, 27 Sep 2023 09:49:02 +0200 Subject: [PATCH] TRLC Release 1.2.2 --- CHANGELOG.md | 2 +- trlc/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b0cb196..f8c3fbcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,7 +24,7 @@ generated in the following situations: ## Changelog -### 1.2.2-dev +### 1.2.2 * [API] Add callbacks to the [Source_Manager](https://bmw-software-engineering.github.io/trlc/manual/infrastructure.html#trlc.trlc.Source_Manager) diff --git a/trlc/version.py b/trlc/version.py index 449d96ce..dd00ad80 100644 --- a/trlc/version.py +++ b/trlc/version.py @@ -19,7 +19,7 @@ # along with TRLC. If not, see . VERSION_TUPLE = (1, 2, 2) -VERSION_SUFFIX = "dev" +VERSION_SUFFIX = "" TRLC_VERSION = ("%u.%u.%u" % VERSION_TUPLE) + \ ("-%s" % VERSION_SUFFIX if VERSION_SUFFIX else "")