Skip to content

Commit 58ee2e5

Browse files
update version
1 parent 70873cf commit 58ee2e5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/util/game_version.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
#include "util/game_version.h"
2323

24-
const std::wstring programmerjake::voxels::GameVersion::VERSION = L"0.7.1.3";
24+
const std::wstring programmerjake::voxels::GameVersion::VERSION = L"0.7.2.1";
2525
const std::uint32_t programmerjake::voxels::GameVersion::FILE_VERSION = 0;
2626

2727
#ifdef COMPILE_DUMP_VERSION
@@ -32,13 +32,13 @@ using namespace std;
3232

3333
int main(int argc, char ** argv)
3434
{
35-
const int curVersion = 3;
35+
const int curVersion = 1;
3636
if(argc > 1 && string(argv[1]) == "--next-version")
3737
cout << (curVersion + 1) << endl;
3838
else if(argc > 1 && string(argv[1]) == "--next-version-str")
39-
cout << "0.7.1." << (curVersion + 1) << endl;
39+
cout << "0.7.2." << (curVersion + 1) << endl;
4040
else if(argc > 1)
41-
cout << "0.7.1." << curVersion << endl;
41+
cout << "0.7.2." << curVersion << endl;
4242
else
4343
cout << GameVersion::FILE_VERSION << endl;
4444
return 0;

update-version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ int main(int argc, char ** argv)
5959
if(argc > 1 && string(argv[1]) == "--next-version")
6060
cout << (curVersion + 1) << endl;
6161
else if(argc > 1 && string(argv[1]) == "--next-version-str")
62-
cout << "0.7.1." << (curVersion + 1) << endl;
62+
cout << "0.7.2." << (curVersion + 1) << endl;
6363
else if(argc > 1)
64-
cout << "0.7.1." << curVersion << endl;
64+
cout << "0.7.2." << curVersion << endl;
6565
else
6666
cout << GameVersion::FILE_VERSION << endl;
6767
return 0;

0 commit comments

Comments
 (0)