Bumped the version to 2.0.0

This commit is contained in:
Leon Styhre 2023-03-11 13:38:38 +01:00
parent 1b6f87af29
commit 8ab6552429
4 changed files with 5 additions and 5 deletions

View file

@ -19,7 +19,7 @@ endif()
project(emulationstation-de) project(emulationstation-de)
# Application version, update this when making a new release. # Application version, update this when making a new release.
set(ES_VERSION 2.0.0-beta) set(ES_VERSION 2.0.0)
# Set this to ON to show verbose compiler output (e.g. compiler flags, include directories etc.) # Set this to ON to show verbose compiler output (e.g. compiler flags, include directories etc.)
set(CMAKE_VERBOSE_MAKEFILE OFF CACHE BOOL "Show verbose compiler output" FORCE) set(CMAKE_VERBOSE_MAKEFILE OFF CACHE BOOL "Show verbose compiler output" FORCE)

View file

@ -21,9 +21,9 @@
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>ESDE</string> <string>ESDE</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>2.0.0-beta</string> <string>2.0.0</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>2.0.0-beta</string> <string>2.0.0</string>
<key>CFBundleInfoDictionaryVersion</key> <key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string> <string>6.0</string>
<key>LSApplicationCategoryType</key> <key>LSApplicationCategoryType</key>

Binary file not shown.

View file

@ -14,9 +14,9 @@
#define PROGRAM_VERSION_MAJOR 2 #define PROGRAM_VERSION_MAJOR 2
#define PROGRAM_VERSION_MINOR 0 #define PROGRAM_VERSION_MINOR 0
#define PROGRAM_VERSION_MAINTENANCE 0 #define PROGRAM_VERSION_MAINTENANCE 0
#define PROGRAM_RELEASE_NUMBER 30 #define PROGRAM_RELEASE_NUMBER 31
// clang-format on // clang-format on
#define PROGRAM_VERSION_STRING "2.0.0-beta" #define PROGRAM_VERSION_STRING "2.0.0"
#define PROGRAM_BUILT_STRING __DATE__ " - " __TIME__ #define PROGRAM_BUILT_STRING __DATE__ " - " __TIME__