Skip to content

Commit e11183e

Browse files
committed
Updated to version 2.32.2 for release
1 parent 024c276 commit e11183e

File tree

11 files changed

+20
-20
lines changed

11 files changed

+20
-20
lines changed

CMakeLists.txt

+1-1
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 32)
92-
set(SDL_MICRO_VERSION 0)
92+
set(SDL_MICRO_VERSION 2)
9393
set(SDL_VERSION "${SDL_MAJOR_VERSION}.${SDL_MINOR_VERSION}.${SDL_MICRO_VERSION}")
9494

9595
# Set defaults preventing destination file conflicts

Makefile.os2

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

Makefile.w32

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
LIBNAME = SDL2
77
MAJOR_VERSION = 2
88
MINOR_VERSION = 32
9-
MICRO_VERSION = 0
9+
MICRO_VERSION = 2
1010
VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(MICRO_VERSION)
1111

1212
LIBHOME = .

Xcode/SDL/Info-Framework.plist

+2-2
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.32.0</string>
22+
<string>2.32.2</string>
2323
<key>CFBundleSignature</key>
2424
<string>SDLX</string>
2525
<key>CFBundleVersion</key>
26-
<string>2.32.0</string>
26+
<string>2.32.2</string>
2727
</dict>
2828
</plist>

Xcode/SDL/SDL.xcodeproj/project.pbxproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -9729,7 +9729,7 @@
97299729
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
97309730
DEPLOYMENT_POSTPROCESSING = YES;
97319731
DYLIB_COMPATIBILITY_VERSION = 3201.0.0;
9732-
DYLIB_CURRENT_VERSION = 3201.0.0;
9732+
DYLIB_CURRENT_VERSION = 3201.2.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.32.0;
9773+
MARKETING_VERSION = 2.32.2;
97749774
OTHER_LDFLAGS = "-liconv";
97759775
};
97769776
name = Release;
@@ -9814,7 +9814,7 @@
98149814
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
98159815
DEBUG_INFORMATION_FORMAT = dwarf;
98169816
DYLIB_COMPATIBILITY_VERSION = 3201.0.0;
9817-
DYLIB_CURRENT_VERSION = 3201.0.0;
9817+
DYLIB_CURRENT_VERSION = 3201.2.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.32.0;
9859+
MARKETING_VERSION = 2.32.2;
98609860
OTHER_LDFLAGS = "-liconv";
98619861
};
98629862
name = Debug;
@@ -10063,7 +10063,7 @@
1006310063
DEFINES_MODULE = YES;
1006410064
DEVELOPMENT_TEAM = "";
1006510065
DYLIB_COMPATIBILITY_VERSION = 3201.0.0;
10066-
DYLIB_CURRENT_VERSION = 3201.0.0;
10066+
DYLIB_CURRENT_VERSION = 3201.2.0;
1006710067
DYLIB_INSTALL_NAME_BASE = "@rpath";
1006810068
GCC_C_LANGUAGE_STANDARD = gnu11;
1006910069
GCC_DYNAMIC_NO_PIC = NO;
@@ -10115,7 +10115,7 @@
1011510115
DEFINES_MODULE = YES;
1011610116
DEVELOPMENT_TEAM = "";
1011710117
DYLIB_COMPATIBILITY_VERSION = 3201.0.0;
10118-
DYLIB_CURRENT_VERSION = 3201.0.0;
10118+
DYLIB_CURRENT_VERSION = 3201.2.0;
1011910119
DYLIB_INSTALL_NAME_BASE = "@rpath";
1012010120
ENABLE_NS_ASSERTIONS = NO;
1012110121
GCC_C_LANGUAGE_STANDARD = gnu11;

Xcode/SDL/pkg-support/SDL.info

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Title SDL 2.32.0
1+
Title SDL 2.32.2
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

+1-1
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 = 32;
64-
private static final int SDL_MICRO_VERSION = 0;
64+
private static final int SDL_MICRO_VERSION = 2;
6565
/*
6666
// Display InputType.SOURCE/CLASS of events and devices
6767
//

configure

+1-1
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=32
3519-
SDL_MICRO_VERSION=0
3519+
SDL_MICRO_VERSION=2
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`

configure.ac

+1-1
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=32
16-
SDL_MICRO_VERSION=0
16+
SDL_MICRO_VERSION=2
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

+1-1
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 32
61-
#define SDL_PATCHLEVEL 0
61+
#define SDL_PATCHLEVEL 2
6262

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

src/main/windows/version.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
99
//
1010

1111
VS_VERSION_INFO VERSIONINFO
12-
FILEVERSION 2,32,0,0
13-
PRODUCTVERSION 2,32,0,0
12+
FILEVERSION 2,32,2,0
13+
PRODUCTVERSION 2,32,2,0
1414
FILEFLAGSMASK 0x3fL
1515
FILEFLAGS 0x0L
1616
FILEOS 0x40004L
@@ -23,12 +23,12 @@ BEGIN
2323
BEGIN
2424
VALUE "CompanyName", "\0"
2525
VALUE "FileDescription", "SDL\0"
26-
VALUE "FileVersion", "2, 32, 0, 0\0"
26+
VALUE "FileVersion", "2, 32, 2, 0\0"
2727
VALUE "InternalName", "SDL\0"
2828
VALUE "LegalCopyright", "Copyright (C) 2025 Sam Lantinga\0"
2929
VALUE "OriginalFilename", "SDL2.dll\0"
3030
VALUE "ProductName", "Simple DirectMedia Layer\0"
31-
VALUE "ProductVersion", "2, 32, 0, 0\0"
31+
VALUE "ProductVersion", "2, 32, 2, 0\0"
3232
END
3333
END
3434
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)