Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Commit a016ab1

Browse files
committed
Merge commit '5adbf3765a57dc5931c2a3137390bfee2370c945'
2 parents f44ec01 + 5adbf37 commit a016ab1

File tree

77 files changed

+521
-326
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+521
-326
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ endif()
8787
# See docs/release_checklist.md
8888
set(SDL_MAJOR_VERSION 2)
8989
set(SDL_MINOR_VERSION 30)
90-
set(SDL_MICRO_VERSION 0)
90+
set(SDL_MICRO_VERSION 1)
9191
set(SDL_VERSION "${SDL_MAJOR_VERSION}.${SDL_MINOR_VERSION}.${SDL_MICRO_VERSION}")
9292

9393
# 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 = 30
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 = 30
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.30.0</string>
22+
<string>2.30.1</string>
2323
<key>CFBundleSignature</key>
2424
<string>SDLX</string>
2525
<key>CFBundleVersion</key>
26-
<string>2.30.0</string>
26+
<string>2.30.1</string>
2727
</dict>
2828
</plist>

Xcode/SDL/SDL.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9769,7 +9769,7 @@
97699769
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
97709770
DEPLOYMENT_POSTPROCESSING = YES;
97719771
DYLIB_COMPATIBILITY_VERSION = 3001.0.0;
9772-
DYLIB_CURRENT_VERSION = 3001.0.0;
9772+
DYLIB_CURRENT_VERSION = 3001.1.0;
97739773
DYLIB_INSTALL_NAME_BASE = "@rpath";
97749774
ENABLE_STRICT_OBJC_MSGSEND = YES;
97759775
GCC_ALTIVEC_EXTENSIONS = YES;
@@ -9810,7 +9810,7 @@
98109810
isa = XCBuildConfiguration;
98119811
buildSettings = {
98129812
CLANG_LINK_OBJC_RUNTIME = NO;
9813-
MARKETING_VERSION = 2.30.0;
9813+
MARKETING_VERSION = 2.30.1;
98149814
OTHER_LDFLAGS = "-liconv";
98159815
};
98169816
name = Release;
@@ -9854,7 +9854,7 @@
98549854
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
98559855
DEBUG_INFORMATION_FORMAT = dwarf;
98569856
DYLIB_COMPATIBILITY_VERSION = 3001.0.0;
9857-
DYLIB_CURRENT_VERSION = 3001.0.0;
9857+
DYLIB_CURRENT_VERSION = 3001.1.0;
98589858
DYLIB_INSTALL_NAME_BASE = "@rpath";
98599859
ENABLE_STRICT_OBJC_MSGSEND = YES;
98609860
ENABLE_TESTABILITY = YES;
@@ -9896,7 +9896,7 @@
98969896
isa = XCBuildConfiguration;
98979897
buildSettings = {
98989898
CLANG_LINK_OBJC_RUNTIME = NO;
9899-
MARKETING_VERSION = 2.30.0;
9899+
MARKETING_VERSION = 2.30.1;
99009900
OTHER_LDFLAGS = "-liconv";
99019901
};
99029902
name = Debug;
@@ -10103,7 +10103,7 @@
1010310103
DEFINES_MODULE = YES;
1010410104
DEVELOPMENT_TEAM = "";
1010510105
DYLIB_COMPATIBILITY_VERSION = 3001.0.0;
10106-
DYLIB_CURRENT_VERSION = 3001.0.0;
10106+
DYLIB_CURRENT_VERSION = 3001.1.0;
1010710107
DYLIB_INSTALL_NAME_BASE = "@rpath";
1010810108
GCC_C_LANGUAGE_STANDARD = gnu11;
1010910109
GCC_DYNAMIC_NO_PIC = NO;
@@ -10155,7 +10155,7 @@
1015510155
DEFINES_MODULE = YES;
1015610156
DEVELOPMENT_TEAM = "";
1015710157
DYLIB_COMPATIBILITY_VERSION = 3001.0.0;
10158-
DYLIB_CURRENT_VERSION = 3001.0.0;
10158+
DYLIB_CURRENT_VERSION = 3001.1.0;
1015910159
DYLIB_INSTALL_NAME_BASE = "@rpath";
1016010160
ENABLE_NS_ASSERTIONS = NO;
1016110161
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.30.0
1+
Title SDL 2.30.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 = 30;
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3510,7 +3510,7 @@ orig_CFLAGS="$CFLAGS"
35103510
# See docs/release_checklist.md
35113511
SDL_MAJOR_VERSION=2
35123512
SDL_MINOR_VERSION=30
3513-
SDL_MICRO_VERSION=0
3513+
SDL_MICRO_VERSION=1
35143514
SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION
35153515

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

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=30
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
@@ -59,7 +59,7 @@ typedef struct SDL_version
5959
*/
6060
#define SDL_MAJOR_VERSION 2
6161
#define SDL_MINOR_VERSION 30
62-
#define SDL_PATCHLEVEL 0
62+
#define SDL_PATCHLEVEL 1
6363

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

0 commit comments

Comments
 (0)