Skip to content

Commit

Permalink
Update release version.
Browse files Browse the repository at this point in the history
  • Loading branch information
dxgldotorg committed Mar 24, 2020
1 parent 5241cc6 commit 976b47c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buildtool/buildtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ void ParseVersion(DXGLVER *version, BOOL git)
version->beta = FALSE;
strcpy(version->branch, "Non-Git");
strcpy(version->revision, "");
strcpy(version->verstring, "0.5.17-0-Non-Git");
strcpy(version->verstring, "0.5.18-0-Non-Git");
}
}

Expand All @@ -333,7 +333,7 @@ int ProcessHeaders(char *path)
version.build = 0;
version.major = 0;
version.minor = 5;
version.point = 17;
version.point = 18;
if (!GetGitVersion(path, &version)) ParseVersion(&version, TRUE);
else ParseVersion(&version, TRUE);
if (SIGNMODE < 1) nosign = TRUE;
Expand Down Expand Up @@ -770,7 +770,7 @@ int SignEXE(char *exefile, char *path)
version.build = 0;
version.major = 0;
version.minor = 5;
version.point = 17;
version.point = 18;
if (!GetGitVersion(path, &version)) ParseVersion(&version, TRUE);
else ParseVersion(&version, TRUE);
if (SIGNMODE < 1) nosign = TRUE;
Expand Down

0 comments on commit 976b47c

Please sign in to comment.