From 245715b10a1997e8cfd6733f169111e7e20c0ab3 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Tue, 19 Dec 2017 11:49:31 +0100 Subject: [PATCH] Set version to 1.0.1 --- include/stdex/common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/stdex/common.h b/include/stdex/common.h index b855bb1a6..6c8a35bb3 100644 --- a/include/stdex/common.h +++ b/include/stdex/common.h @@ -39,7 +39,7 @@ // Product version as a single DWORD // Note: Used for version comparison within C/C++ code. // -#define STDEX_VERSION 0x01000000 +#define STDEX_VERSION 0x01000100 // // Product version by components @@ -49,11 +49,11 @@ // #define STDEX_VERSION_MAJ 1 #define STDEX_VERSION_MIN 0 -#define STDEX_VERSION_REV 0 +#define STDEX_VERSION_REV 1 #define STDEX_VERSION_BUILD 0 // // Human readable product version and build year for UI // -#define STDEX_VERSION_STR "1.0" +#define STDEX_VERSION_STR "1.0.1" #define STDEX_BUILD_YEAR_STR "2016"