diff --git a/CHANGELOG.md b/CHANGELOG.md index 7332fc6..b674b19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,10 @@ generated in the following situations: ## Changelog +### 2.0.5-dev + + + ### 2.0.4 * [TRLC_RST] Add tool to convert TRLC Requirements to Sphinx RST Files diff --git a/trlc/version.py b/trlc/version.py index 3b5842e..e303aaf 100644 --- a/trlc/version.py +++ b/trlc/version.py @@ -18,8 +18,8 @@ # You should have received a copy of the GNU General Public License # along with TRLC. If not, see . -VERSION_TUPLE = (2, 0, 4) -VERSION_SUFFIX = "" +VERSION_TUPLE = (2, 0, 5) +VERSION_SUFFIX = "dev" TRLC_VERSION = ("%u.%u.%u" % VERSION_TUPLE) + \ ("-%s" % VERSION_SUFFIX if VERSION_SUFFIX else "")