Skip to content

Commit 3e97d41

Browse files
committed
Updated to version 2.31.1 for RC build
1 parent dab0205 commit 3e97d41

File tree

11 files changed

+29
-31
lines changed

11 files changed

+29
-31
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ endif()
8989
# See docs/release_checklist.md
9090
set(SDL_MAJOR_VERSION 2)
9191
set(SDL_MINOR_VERSION 31)
92-
set(SDL_MICRO_VERSION 0)
92+
set(SDL_MICRO_VERSION 1)
9393
set(SDL_VERSION "${SDL_MAJOR_VERSION}.${SDL_MINOR_VERSION}.${SDL_MICRO_VERSION}")
9494

9595
# Set defaults preventing destination file conflicts

Makefile.os2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
LIBNAME = SDL2
1616
MAJOR_VERSION = 2
1717
MINOR_VERSION = 31
18-
MICRO_VERSION = 0
18+
MICRO_VERSION = 1
1919
VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(MICRO_VERSION)
2020
DESCRIPTION = Simple DirectMedia Layer 2
2121

Makefile.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
LIBNAME = SDL2
77
MAJOR_VERSION = 2
88
MINOR_VERSION = 31
9-
MICRO_VERSION = 0
9+
MICRO_VERSION = 1
1010
VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(MICRO_VERSION)
1111

1212
LIBHOME = .

Xcode/SDL/Info-Framework.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
<key>CFBundlePackageType</key>
2020
<string>FMWK</string>
2121
<key>CFBundleShortVersionString</key>
22-
<string>2.31.0</string>
22+
<string>2.31.1</string>
2323
<key>CFBundleSignature</key>
2424
<string>SDLX</string>
2525
<key>CFBundleVersion</key>
26-
<string>2.31.0</string>
26+
<string>2.31.1</string>
2727
</dict>
2828
</plist>

Xcode/SDL/SDL.xcodeproj/project.pbxproj

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9728,8 +9728,8 @@
97289728
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
97299729
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
97309730
DEPLOYMENT_POSTPROCESSING = YES;
9731-
DYLIB_COMPATIBILITY_VERSION = 3101.0.0;
9732-
DYLIB_CURRENT_VERSION = 3101.0.0;
9731+
DYLIB_COMPATIBILITY_VERSION = 3102.0.0;
9732+
DYLIB_CURRENT_VERSION = 3102.0.0;
97339733
DYLIB_INSTALL_NAME_BASE = "@rpath";
97349734
ENABLE_STRICT_OBJC_MSGSEND = YES;
97359735
GCC_ALTIVEC_EXTENSIONS = YES;
@@ -9770,7 +9770,7 @@
97709770
isa = XCBuildConfiguration;
97719771
buildSettings = {
97729772
CLANG_LINK_OBJC_RUNTIME = NO;
9773-
MARKETING_VERSION = 2.31.0;
9773+
MARKETING_VERSION = 2.31.1;
97749774
OTHER_LDFLAGS = "-liconv";
97759775
};
97769776
name = Release;
@@ -9813,8 +9813,8 @@
98139813
CLANG_WARN_UNREACHABLE_CODE = YES;
98149814
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
98159815
DEBUG_INFORMATION_FORMAT = dwarf;
9816-
DYLIB_COMPATIBILITY_VERSION = 3101.0.0;
9817-
DYLIB_CURRENT_VERSION = 3101.0.0;
9816+
DYLIB_COMPATIBILITY_VERSION = 3102.0.0;
9817+
DYLIB_CURRENT_VERSION = 3102.0.0;
98189818
DYLIB_INSTALL_NAME_BASE = "@rpath";
98199819
ENABLE_STRICT_OBJC_MSGSEND = YES;
98209820
ENABLE_TESTABILITY = YES;
@@ -9856,7 +9856,7 @@
98569856
isa = XCBuildConfiguration;
98579857
buildSettings = {
98589858
CLANG_LINK_OBJC_RUNTIME = NO;
9859-
MARKETING_VERSION = 2.31.0;
9859+
MARKETING_VERSION = 2.31.1;
98609860
OTHER_LDFLAGS = "-liconv";
98619861
};
98629862
name = Debug;
@@ -10062,8 +10062,8 @@
1006210062
CURRENT_PROJECT_VERSION = 1;
1006310063
DEFINES_MODULE = YES;
1006410064
DEVELOPMENT_TEAM = "";
10065-
DYLIB_COMPATIBILITY_VERSION = 3101.0.0;
10066-
DYLIB_CURRENT_VERSION = 3101.0.0;
10065+
DYLIB_COMPATIBILITY_VERSION = 3102.0.0;
10066+
DYLIB_CURRENT_VERSION = 3102.0.0;
1006710067
DYLIB_INSTALL_NAME_BASE = "@rpath";
1006810068
GCC_C_LANGUAGE_STANDARD = gnu11;
1006910069
GCC_DYNAMIC_NO_PIC = NO;
@@ -10114,8 +10114,8 @@
1011410114
CURRENT_PROJECT_VERSION = 1;
1011510115
DEFINES_MODULE = YES;
1011610116
DEVELOPMENT_TEAM = "";
10117-
DYLIB_COMPATIBILITY_VERSION = 3101.0.0;
10118-
DYLIB_CURRENT_VERSION = 3101.0.0;
10117+
DYLIB_COMPATIBILITY_VERSION = 3102.0.0;
10118+
DYLIB_CURRENT_VERSION = 3102.0.0;
1011910119
DYLIB_INSTALL_NAME_BASE = "@rpath";
1012010120
ENABLE_NS_ASSERTIONS = NO;
1012110121
GCC_C_LANGUAGE_STANDARD = gnu11;

Xcode/SDL/pkg-support/SDL.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Title SDL 2.31.0
1+
Title SDL 2.31.1
22
Version 1
33
Description SDL Library for Mac OS X (http://www.libsdl.org)
44
DefaultLocation /Library/Frameworks

android-project/app/src/main/java/org/libsdl/app/SDLActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
6161
private static final String TAG = "SDL";
6262
private static final int SDL_MAJOR_VERSION = 2;
6363
private static final int SDL_MINOR_VERSION = 31;
64-
private static final int SDL_MICRO_VERSION = 0;
64+
private static final int SDL_MICRO_VERSION = 1;
6565
/*
6666
// Display InputType.SOURCE/CLASS of events and devices
6767
//

configure

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3516,7 +3516,7 @@ orig_CFLAGS="$CFLAGS"
35163516
# See docs/release_checklist.md
35173517
SDL_MAJOR_VERSION=2
35183518
SDL_MINOR_VERSION=31
3519-
SDL_MICRO_VERSION=0
3519+
SDL_MICRO_VERSION=1
35203520
SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION
35213521

35223522
SDL_BINARY_AGE=`expr $SDL_MINOR_VERSION \* 100 + $SDL_MICRO_VERSION`
@@ -14246,11 +14246,11 @@ if test x$ac_prog_cxx_stdcxx = xno
1424614246
then :
1424714247
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++11 features" >&5
1424814248
printf %s "checking for $CXX option to enable C++11 features... " >&6; }
14249-
if test ${ac_cv_prog_cxx_cxx11+y}
14249+
if test ${ac_cv_prog_cxx_11+y}
1425014250
then :
1425114251
printf %s "(cached) " >&6
1425214252
else $as_nop
14253-
ac_cv_prog_cxx_cxx11=no
14253+
ac_cv_prog_cxx_11=no
1425414254
ac_save_CXX=$CXX
1425514255
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1425614256
/* end confdefs.h. */
@@ -14292,11 +14292,11 @@ if test x$ac_prog_cxx_stdcxx = xno
1429214292
then :
1429314293
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++98 features" >&5
1429414294
printf %s "checking for $CXX option to enable C++98 features... " >&6; }
14295-
if test ${ac_cv_prog_cxx_cxx98+y}
14295+
if test ${ac_cv_prog_cxx_98+y}
1429614296
then :
1429714297
printf %s "(cached) " >&6
1429814298
else $as_nop
14299-
ac_cv_prog_cxx_cxx98=no
14299+
ac_cv_prog_cxx_98=no
1430014300
ac_save_CXX=$CXX
1430114301
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1430214302
/* end confdefs.h. */
@@ -19260,15 +19260,13 @@ then :
1926019260
ac_cv_func_alloca_works=yes
1926119261
else $as_nop
1926219262
ac_cv_func_alloca_works=no
19263-
1926419263
fi
1926519264
rm -f core conftest.err conftest.$ac_objext conftest.beam \
1926619265
conftest$ac_exeext conftest.$ac_ext
1926719266
fi
19268-
19269-
fi
1927019267
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_alloca_works" >&5
1927119268
printf "%s\n" "$ac_cv_func_alloca_works" >&6; }
19269+
fi
1927219270

1927319271
if test $ac_cv_func_alloca_works = yes; then
1927419272

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dnl Set various version strings - taken gratefully from the GTk sources
1313
# See docs/release_checklist.md
1414
SDL_MAJOR_VERSION=2
1515
SDL_MINOR_VERSION=31
16-
SDL_MICRO_VERSION=0
16+
SDL_MICRO_VERSION=1
1717
SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION
1818

1919
SDL_BINARY_AGE=`expr $SDL_MINOR_VERSION \* 100 + $SDL_MICRO_VERSION`

include/SDL_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ typedef struct SDL_version
5858
*/
5959
#define SDL_MAJOR_VERSION 2
6060
#define SDL_MINOR_VERSION 31
61-
#define SDL_PATCHLEVEL 0
61+
#define SDL_PATCHLEVEL 1
6262

6363
/**
6464
* Macro to determine SDL version program was compiled against.

0 commit comments

Comments
 (0)