diff --git a/CHANGELOG.md b/CHANGELOG.md index ae09fbc..00725a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,7 +25,7 @@ generated in the following situations: ## Changelog -### 2.0.0-dev +### 2.0.0 This new major release includes a number of incompatible changes. These have been tagged in the changelog. diff --git a/trlc/version.py b/trlc/version.py index f43cce4..16d06bd 100644 --- a/trlc/version.py +++ b/trlc/version.py @@ -19,7 +19,7 @@ # along with TRLC. If not, see . VERSION_TUPLE = (2, 0, 0) -VERSION_SUFFIX = "dev" +VERSION_SUFFIX = "" TRLC_VERSION = ("%u.%u.%u" % VERSION_TUPLE) + \ ("-%s" % VERSION_SUFFIX if VERSION_SUFFIX else "")