From 87d1684a70cccf579da75ab63343c9e8a36a8a03 Mon Sep 17 00:00:00 2001 From: Hannes Domani Date: Sun, 7 Jul 2019 14:35:37 +0200 Subject: [PATCH] set version 3.2-dev --- Makefile | 6 +++--- heob.qbs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 098650f..79b5a96 100644 --- a/Makefile +++ b/Makefile @@ -7,9 +7,9 @@ else DATE:=$(strip $(subst .,,$(shell date /t))) endif -HEOB_VERSION:=3.1 -HEOB_VER_NUM:=3,1,0,0 -HEOB_PRERELEASE:=0 +HEOB_VERSION:=3.2-dev-$(DATE) +HEOB_VER_NUM:=3,2,0,99 +HEOB_PRERELEASE:=1 HEOB_COPYRIGHT_YEARS:=2014-2019 ifeq ($(MINGW32_MAKE),) diff --git a/heob.qbs b/heob.qbs index 615221d..b4fa8cd 100644 --- a/heob.qbs +++ b/heob.qbs @@ -4,7 +4,7 @@ Project { references: "dwarfstack/dwarfstack.qbs" CppApplication { - property string heob_base_ver: "3.1" + property string heob_base_ver: "3.2-dev" property string heob_ver: { var d = new Date() return heob_base_ver + "-" @@ -20,7 +20,7 @@ Project { } consoleApplication: true cpp.windowsApiCharacterSet: "mbcs" - cpp.defines: "HEOB_VER=\"" + heob_base_ver + "\"" + cpp.defines: "HEOB_VER=\"" + heob_ver + "\"" cpp.dynamicLibraries: "kernel32" cpp.driverFlags: "-nostdlib"