Skip to content

Commit 9fa032e

Browse files
committed
Merge branch '0.9-rc1' of github.com:supertuxkart/stk-code into 0.9-rc1
2 parents 8371d0c + 97b69f2 commit 9fa032e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# root CMakeLists for the SuperTuxKart project
22
project(SuperTuxKart)
3-
set(PROJECT_VERSION "0.9-rc1")
3+
set(PROJECT_VERSION "0.9")
44

55
cmake_minimum_required(VERSION 2.8.4)
66
if(NOT (CMAKE_MAJOR_VERSION VERSION_LESS 3))

data/SuperTuxKart-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>0.9-rc1</string>
20+
<string>0.9</string>
2121
<key>CFBundleSignature</key>
2222
<string>SPTK</string>
2323
<key>CFBundleVersion</key>
24-
<string>0.9-rc1</string>
24+
<string>0.9</string>
2525
<key>CSResourcesFileMapped</key>
2626
<true/>
2727
<key>LSMinimumSystemVersion</key>

src/utils/constants.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ static const char* endianness_test_ptr = (const char*)&endianness_test;
2929
// in little-endian, byte 0 will be 0. in big endian, byte 0 will be 1
3030
const bool IS_LITTLE_ENDIAN = (endianness_test_ptr[0] == 0);
3131

32-
const char STK_VERSION[] = "0.9-rc1";
32+
const char STK_VERSION[] = "0.9";

0 commit comments

Comments
 (0)