From 91eb6bb4033b23046688c96223910964cf4dc98e Mon Sep 17 00:00:00 2001 From: Benjamin Isbarn Date: Thu, 22 Jun 2017 23:46:43 +0200 Subject: [PATCH] Release of version 1.1.0 --- include/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/version.h b/include/version.h index 049a691..c2cb4c1 100644 --- a/include/version.h +++ b/include/version.h @@ -4,7 +4,7 @@ int const VERSION_MAJOR = 1; int const VERSION_MINOR = 1; int const VERSION_PATCH = 0; -bool const VERSION_PRERELEASE = true; +bool const VERSION_PRERELEASE = false; QString const VERSION_STRING = VERSION_PRERELEASE ? QString("%1.%2.%3 (Beta)").arg(VERSION_MAJOR).arg(VERSION_MINOR).arg(VERSION_PATCH) : QString("%1.%2.%3").arg(VERSION_MAJOR).arg(VERSION_MINOR).arg(VERSION_PATCH);