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 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 " ;
2525const std::uint32_t programmerjake::voxels::GameVersion::FILE_VERSION = 0 ;
2626
2727#ifdef COMPILE_DUMP_VERSION
@@ -32,13 +32,13 @@ using namespace std;
3232
3333int 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 ;
Original file line number Diff line number Diff 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;
You can’t perform that action at this time.
0 commit comments