Bumped version number

dev
Shariq Shah 5 years ago
parent 8d6e2307a8
commit 841704f14f
  1. 4
      build/genie.lua
  2. 6
      src/common/version.h

@ -59,8 +59,8 @@ solution "Symmetry"
trigger = "generate_version_file", trigger = "generate_version_file",
description = "Generate version.h from git revision number", description = "Generate version.h from git revision number",
execute = function() execute = function()
local major_version = 0 local major_version = 1
local minor_version = 4 local minor_version = 0
local revision_number = os.outputof("git rev-list --count HEAD") local revision_number = os.outputof("git rev-list --count HEAD")
local branch = os.outputof("git rev-parse --abbrev-ref HEAD") local branch = os.outputof("git rev-parse --abbrev-ref HEAD")

@ -2,9 +2,9 @@
#define SYMMETRY_VERSION_FILE #define SYMMETRY_VERSION_FILE
/* Auto generated version file. DO NOT MODIFY */ /* Auto generated version file. DO NOT MODIFY */
#define SYMMETRY_VERSION_MAJOR 0 #define SYMMETRY_VERSION_MAJOR 1
#define SYMMETRY_VERSION_MINOR 4 #define SYMMETRY_VERSION_MINOR 0
#define SYMMETRY_VERSION_REVISION 377 #define SYMMETRY_VERSION_REVISION 378
#define SYMMETRY_VERSION_BRANCH "dev" #define SYMMETRY_VERSION_BRANCH "dev"
#endif #endif
Loading…
Cancel
Save