diff --git a/changelog.md b/changelog.md index 6e684bab8f5..f91b00b4ff8 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,18 @@ +## Version 1.19.4+dev + ### Add-ons client + ### Add-ons server + ### Campaigns + ### Editor + ### Multiplayer + ### Lua API + ### Packaging + ### Terrain + ### Translations + ### Units + ### User interface + ### WML Engine + ### Miscellaneous and Bug Fixes + ## Version 1.19.4 ### Lua API * Added new function gui.switch_theme() to allow switching to another gui2 theme from inside a scenario. diff --git a/data/tools/wesnoth/version.py b/data/tools/wesnoth/version.py index 5de7d1087b6..d882e00c1ad 100755 --- a/data/tools/wesnoth/version.py +++ b/data/tools/wesnoth/version.py @@ -3,7 +3,7 @@ major = 1 minor = 19 release = 4 -dev_suffix = "" # either use "+dev", "-dev", "" (empty string) or None +dev_suffix = "+dev" # either use "+dev", "-dev", "" (empty string) or None as_string = "{}.{}.{}{}".format(major, minor, diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index b63a5b79469..cb999a8e2e9 100644 --- a/doc/doxygen/Doxyfile +++ b/doc/doxygen/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "The Battle for Wesnoth" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.19.4 +PROJECT_NUMBER = 1.19.4+dev # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/src/wesconfig.h b/src/wesconfig.h index f06eae57580..f32639ed21b 100644 --- a/src/wesconfig.h +++ b/src/wesconfig.h @@ -40,11 +40,11 @@ #undef VERSION #endif -#define VERSION "1.19.4" +#define VERSION "1.19.4+dev" // Used for the Windows executables' version info resource. #define RC_VERSION_MAJOR 1 #define RC_VERSION_MINOR 19 -#define RC_VERSION_REVISION 4 +#define RC_VERSION_REVISION 5 #endif