Skip to content

Commit

Permalink
[0.2.1-35] Version bump (PRNG support)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakiru committed Jan 25, 2016
1 parent 4c20dea commit 307bc38
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion heart/heartbeat.py
Expand Up @@ -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,34)
IB_VERSION_CMP = (0,2,1,0,35)
IB_VERSION = calc_ib_version(*IB_VERSION_CMP)

# ignore "Z" version
Expand Down
2 changes: 1 addition & 1 deletion include/common.h
Expand Up @@ -23,7 +23,7 @@
#define VERSION_X 2
#define VERSION_Y 1
#define VERSION_A 0
#define VERSION_Z 34
#define VERSION_Z 35
// 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!
Expand Down
7 changes: 4 additions & 3 deletions pkg/base/version.lua
Expand Up @@ -20,9 +20,9 @@
-- Thanks. --GM

VERSION_ENGINE = {
cmp={0,2,1,0,34},
num=8421376+34,
str="0.2.1-34",
cmp={0,2,1,0,35},
num=8421376+35,
str="0.2.1-35",
}

--error(""..common.version.num)
Expand Down Expand Up @@ -175,5 +175,6 @@ VERSION_BUGS = {
{intro=8421376+4, fix=8421376+31, msg="Possible crash when loading VXL maps"},
{intro=nil, fix=8421376+32, msg="Possible crash when loading invalid maps"},
{intro=8421376+32, fix=8421376+33, msg="VXL height autodetection fails on ylen assertion"},
{intro=nil, fix=8421376+35, msg="PRNG not supported"},
}

0 comments on commit 307bc38

Please sign in to comment.