File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 21
21
*/
22
22
#include " util/game_version.h"
23
23
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 " ;
25
25
const std::uint32_t programmerjake::voxels::GameVersion::FILE_VERSION = 0 ;
26
26
27
27
#ifdef COMPILE_DUMP_VERSION
@@ -32,13 +32,13 @@ using namespace std;
32
32
33
33
int main (int argc, char ** argv)
34
34
{
35
- const int curVersion = 3 ;
35
+ const int curVersion = 1 ;
36
36
if (argc > 1 && string (argv[1 ]) == " --next-version" )
37
37
cout << (curVersion + 1 ) << endl;
38
38
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;
40
40
else if (argc > 1 )
41
- cout << " 0.7.1 ." << curVersion << endl;
41
+ cout << " 0.7.2 ." << curVersion << endl;
42
42
else
43
43
cout << GameVersion::FILE_VERSION << endl;
44
44
return 0 ;
Original file line number Diff line number Diff line change @@ -59,9 +59,9 @@ int main(int argc, char ** argv)
59
59
if(argc > 1 && string(argv[1]) == "--next-version")
60
60
cout << (curVersion + 1) << endl;
61
61
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;
63
63
else if(argc > 1)
64
- cout << "0.7.1 ." << curVersion << endl;
64
+ cout << "0.7.2 ." << curVersion << endl;
65
65
else
66
66
cout << GameVersion::FILE_VERSION << endl;
67
67
return 0;
You can’t perform that action at this time.
0 commit comments