diff --git a/CHANGELOG.md b/CHANGELOG.md index 18214755..b4d5fd57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,7 +25,7 @@ generated in the following situations: ## Changelog -### 2.0.3-dev +### 2.0.3 * [API] Fix incorrect output of `Integer_Literal.dump()` method. diff --git a/tests-system/lint-vcg-tuple/output b/tests-system/lint-vcg-tuple/output index b6f169f4..537318b6 100644 --- a/tests-system/lint-vcg-tuple/output +++ b/tests-system/lint-vcg-tuple/output @@ -5,7 +5,7 @@ c, "potato" | x = 1 | y = 2 | p = -1 -| q = -3 +| q = -2 | /* c is null */ | } then x.version > 5 diff --git a/trlc/version.py b/trlc/version.py index 21da990a..da468744 100644 --- a/trlc/version.py +++ b/trlc/version.py @@ -19,7 +19,7 @@ # along with TRLC. If not, see . VERSION_TUPLE = (2, 0, 3) -VERSION_SUFFIX = "dev" +VERSION_SUFFIX = "" TRLC_VERSION = ("%u.%u.%u" % VERSION_TUPLE) + \ ("-%s" % VERSION_SUFFIX if VERSION_SUFFIX else "")