diff --git a/heart/heartbeat.py b/heart/heartbeat.py index a76a3e2..37a91ee 100644 --- a/heart/heartbeat.py +++ b/heart/heartbeat.py @@ -45,7 +45,7 @@ def calc_ib_version(w,x,y,a,z): HB_LIFETIME = 120 HB_VERSION = 2 -IB_VERSION_CMP = (0,2,1,0,33) +IB_VERSION_CMP = (0,2,1,0,34) IB_VERSION = calc_ib_version(*IB_VERSION_CMP) # ignore "Z" version diff --git a/include/common.h b/include/common.h index ae9b2af..5e4779b 100644 --- a/include/common.h +++ b/include/common.h @@ -23,7 +23,7 @@ #define VERSION_X 2 #define VERSION_Y 1 #define VERSION_A 0 -#define VERSION_Z 33 +#define VERSION_Z 34 // Remember to bump "Z" basically every time you change the engine! // Remember to bump the version in Lua too! // Remember to document API changes in a new version! diff --git a/pkg/base/version.lua b/pkg/base/version.lua index 3827827..2fdce3c 100644 --- a/pkg/base/version.lua +++ b/pkg/base/version.lua @@ -20,9 +20,9 @@ -- Thanks. --GM VERSION_ENGINE = { - cmp={0,2,1,0,33}, - num=8421376+33, - str="0.2.1-33", + cmp={0,2,1,0,34}, + num=8421376+34, + str="0.2.1-34", } --error(""..common.version.num)