diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/winver.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index fc188943..903417c8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ CMAKE_POLICY(VERSION 2.6) PROJECT(MANA) IF (NOT VERSION) - SET(VERSION 1.0.0) + SET(VERSION 0.6.0) ENDIF() STRING(REPLACE "." " " _VERSION ${VERSION}) diff --git a/src/winver.h b/src/winver.h index 773693bb..46eb942c 100644 --- a/src/winver.h +++ b/src/winver.h @@ -1,6 +1,6 @@ /* VERSION DEFINITIONS */ -#define VER_MAJOR 1 -#define VER_MINOR 0 +#define VER_MAJOR 0 +#define VER_MINOR 6 #define VER_RELEASE 0 #define VER_BUILD 0 -#define PACKAGE_VERSION "1.0.0.0" +#define PACKAGE_VERSION "0.6.0.0" |