From 073d4111b2216da3ceb45abd1c3ae59a625a788a Mon Sep 17 00:00:00 2001 From: Pentarctagon Date: Sat, 16 Apr 2022 19:35:46 -0500 Subject: [PATCH] 1.17.3+dev --- Doxyfile | 2 +- changelog.md | 15 +++++++++++++++ data/tools/wesnoth/version.py | 2 +- src/wesconfig.h | 4 ++-- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/Doxyfile b/Doxyfile index 28fed1f57c7..99ed54bda29 100644 --- a/Doxyfile +++ b/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.17.3 +PROJECT_NUMBER = 1.17.3+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/changelog.md b/changelog.md index 93fcf930d68..7f74ce88946 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,18 @@ +## Version 1.17.3+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.17.3 ### Add-ons client * The `forum_auth` attribute now allows authenticating with your forum credentials, as well as no longer requiring the `passphrase` or `email` attributes be populated in the `_server.pbl`. (PR #5866) diff --git a/data/tools/wesnoth/version.py b/data/tools/wesnoth/version.py index 57f8c707c5c..c942bce33db 100755 --- a/data/tools/wesnoth/version.py +++ b/data/tools/wesnoth/version.py @@ -3,7 +3,7 @@ major = 1 minor = 17 release = 3 -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/src/wesconfig.h b/src/wesconfig.h index 3606bbdcbc5..d812980d6e6 100644 --- a/src/wesconfig.h +++ b/src/wesconfig.h @@ -40,11 +40,11 @@ #undef VERSION #endif -#define VERSION "1.17.3" +#define VERSION "1.17.3+dev" // Used for the Windows executables' version info resource. #define RC_VERSION_MAJOR 1 #define RC_VERSION_MINOR 17 -#define RC_VERSION_REVISION 3 +#define RC_VERSION_REVISION 4 #endif