diff --git a/CMakeLists.txt b/CMakeLists.txt index 126f49ade9..64c7c9400c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED on) include(CMakeDependentOption) project(EasyRPG_Player CXX C) -set(PACKAGE_VERSION "0.5.2") +set(PACKAGE_VERSION "0.5.3") # Source Files set(PLAYER_SRCS diff --git a/README.md b/README.md index 2b6173e588..5ef54074bc 100644 --- a/README.md +++ b/README.md @@ -70,8 +70,8 @@ Building requirements: Step-by-step instructions: - tar xf easyrpg-player-0.5.2.tar.xz # unpack the tarball - cd easyrpg-player-0.5.2 # enter in the package directory + tar xf easyrpg-player-0.5.3.tar.xz # unpack the tarball + cd easyrpg-player-0.5.3 # enter in the package directory ./configure # find libraries, set options make # compile the executable @@ -99,8 +99,8 @@ Building requirements: Step-by-step instructions: - tar xf easyrpg-player-0.5.2.tar.xz # unpack the tarball - cd easyrpg-player-0.5.2 # enter in the package directory + tar xf easyrpg-player-0.5.3.tar.xz # unpack the tarball + cd easyrpg-player-0.5.3 # enter in the package directory cmake . # generate Makefile make # compile the executable diff --git a/builds/wii/meta.xml b/builds/wii/meta.xml index 8ba8b8b4bb..dfed27c315 100644 --- a/builds/wii/meta.xml +++ b/builds/wii/meta.xml @@ -2,8 +2,8 @@ EasyRPG Player EasyRPG Team - 0.5.2 - 20170628000000 + 0.5.3 + 20171022000000 RPG Maker 2000/2003 player EasyRPG Player is a Role Playing Game interpreter for playing games created by RPG Maker 2000/2003. diff --git a/configure.ac b/configure.ac index cf164309ca..954fdcda51 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([easyrpg-player],[0.5.2],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easyrpg.org]) +AC_INIT([easyrpg-player],[0.5.3],[https://github.com/EasyRPG/Player/issues],[easyrpg-player],[https://easyrpg.org]) AC_CONFIG_AUX_DIR([builds/autoconf]) AM_INIT_AUTOMAKE([1.11.4 foreign subdir-objects tar-ustar -Wall -Werror]) diff --git a/resources/osx/Info.plist b/resources/osx/Info.plist index 012c8046e9..2767787795 100644 --- a/resources/osx/Info.plist +++ b/resources/osx/Info.plist @@ -31,7 +31,7 @@ APPL CFBundleShortVersionString - 0.5.2 + 0.5.3 diff --git a/resources/player.rc b/resources/player.rc index 6a73b35077..268ab2e2da 100644 --- a/resources/player.rc +++ b/resources/player.rc @@ -3,8 +3,8 @@ 1 24 "player.xml" #endif 1 VERSIONINFO -FILEVERSION 0,5,2,0 -PRODUCTVERSION 0,5,2,0 +FILEVERSION 0,5,3,0 +PRODUCTVERSION 0,5,3,0 FILETYPE 0x00000001L { BLOCK "StringFileInfo" @@ -13,13 +13,13 @@ FILETYPE 0x00000001L { VALUE "Comments", "https://easyrpg.org" VALUE "CompanyName", "EasyRPG Project" - VALUE "FileVersion", "0.5.2.0" + VALUE "FileVersion", "0.5.3.0" VALUE "FileDescription", "EasyRPG Player" VALUE "InternalName", "easyrpg-player" VALUE "LegalCopyright", "2007-2017 EasyRPG Project" VALUE "OriginalFilename", "Player.exe" VALUE "ProductName", "EasyRPG Player" - VALUE "ProductVersion", "0.5.2.0" + VALUE "ProductVersion", "0.5.3.0" } } BLOCK "VarFileInfo" diff --git a/src/version.h b/src/version.h index e3225a75ad..e7f8e6a207 100644 --- a/src/version.h +++ b/src/version.h @@ -28,7 +28,7 @@ */ #define PLAYER_MAJOR 0 #define PLAYER_MINOR 5 -#define PLAYER_PATCH 2 +#define PLAYER_PATCH 3 #define PLAYER_ADDTL "" #define PLAYER_VERSION TO_STRING(PLAYER_MAJOR) "." TO_STRING(PLAYER_MINOR) "." TO_STRING(PLAYER_PATCH)