From 2f7492667ac0d50e6645b168a61bab528ccc3027 Mon Sep 17 00:00:00 2001 From: Bart van Strien Date: Fri, 26 Feb 2016 15:11:42 +0100 Subject: [PATCH] Bump version --HG-- branch : minor --- src/common/version.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/common/version.h b/src/common/version.h index be23de43a..0aaee00aa 100644 --- a/src/common/version.h +++ b/src/common/version.h @@ -25,13 +25,13 @@ namespace love { // Version stuff. -#define LOVE_VERSION_STRING "0.10.1" +#define LOVE_VERSION_STRING "0.11.0" static const int VERSION_MAJOR = 0; -static const int VERSION_MINOR = 10; -static const int VERSION_REV = 1; +static const int VERSION_MINOR = 11; +static const int VERSION_REV = 0; static const char *VERSION = LOVE_VERSION_STRING; -static const char *VERSION_COMPATIBILITY[] = { VERSION, "0.10.0", 0 }; -static const char *VERSION_CODENAME = "Super Toast"; +static const char *VERSION_COMPATIBILITY[] = { VERSION, 0 }; +static const char *VERSION_CODENAME = ""; } // love