Skip to content

Commit 7773157

Browse files
committed
Updated to version 3.3.5 for development
1 parent 9bf86a2 commit 7773157

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if(NOT DEFINED CMAKE_BUILD_TYPE)
55
endif()
66

77
# See docs/release_checklist.md
8-
project(SDL3 LANGUAGES C VERSION "3.3.4")
8+
project(SDL3 LANGUAGES C VERSION "3.3.5")
99

1010
if(CMAKE_SOURCE_DIR STREQUAL PROJECT_SOURCE_DIR)
1111
set(SDL3_MAINPROJECT ON)

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>3.3.4</string>
22+
<string>3.3.5</string>
2323
<key>CFBundleSignature</key>
2424
<string>SDLX</string>
2525
<key>CFBundleVersion</key>
26-
<string>3.3.4</string>
26+
<string>3.3.5</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
@@ -3145,8 +3145,8 @@
31453145
CLANG_ENABLE_MODULES = YES;
31463146
CLANG_ENABLE_OBJC_ARC = YES;
31473147
DEPLOYMENT_POSTPROCESSING = YES;
3148-
DYLIB_COMPATIBILITY_VERSION = 305.0.0;
3149-
DYLIB_CURRENT_VERSION = 305.0.0;
3148+
DYLIB_COMPATIBILITY_VERSION = 306.0.0;
3149+
DYLIB_CURRENT_VERSION = 306.0.0;
31503150
DYLIB_INSTALL_NAME_BASE = "@rpath";
31513151
ENABLE_STRICT_OBJC_MSGSEND = YES;
31523152
GCC_ALTIVEC_EXTENSIONS = YES;
@@ -3181,7 +3181,7 @@
31813181
"@loader_path/Frameworks",
31823182
);
31833183
MACOSX_DEPLOYMENT_TARGET = 10.13;
3184-
MARKETING_VERSION = 3.3.4;
3184+
MARKETING_VERSION = 3.3.5;
31853185
OTHER_LDFLAGS = "$(CONFIG_FRAMEWORK_LDFLAGS)";
31863186
PRODUCT_BUNDLE_IDENTIFIER = org.libsdl.SDL3;
31873187
PRODUCT_NAME = SDL3;
@@ -3211,8 +3211,8 @@
32113211
ALLOW_TARGET_PLATFORM_SPECIALIZATION = YES;
32123212
CLANG_ENABLE_MODULES = YES;
32133213
CLANG_ENABLE_OBJC_ARC = YES;
3214-
DYLIB_COMPATIBILITY_VERSION = 305.0.0;
3215-
DYLIB_CURRENT_VERSION = 305.0.0;
3214+
DYLIB_COMPATIBILITY_VERSION = 306.0.0;
3215+
DYLIB_CURRENT_VERSION = 306.0.0;
32163216
DYLIB_INSTALL_NAME_BASE = "@rpath";
32173217
ENABLE_STRICT_OBJC_MSGSEND = YES;
32183218
ENABLE_TESTABILITY = YES;
@@ -3244,7 +3244,7 @@
32443244
"@loader_path/Frameworks",
32453245
);
32463246
MACOSX_DEPLOYMENT_TARGET = 10.13;
3247-
MARKETING_VERSION = 3.3.4;
3247+
MARKETING_VERSION = 3.3.5;
32483248
ONLY_ACTIVE_ARCH = YES;
32493249
OTHER_LDFLAGS = "$(CONFIG_FRAMEWORK_LDFLAGS)";
32503250
PRODUCT_BUNDLE_IDENTIFIER = org.libsdl.SDL3;

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 3.3.4
1+
Title SDL 3.3.5
22
Version 1
33
Description SDL Library for macOS (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 = 3;
6363
private static final int SDL_MINOR_VERSION = 3;
64-
private static final int SDL_MICRO_VERSION = 4;
64+
private static final int SDL_MICRO_VERSION = 5;
6565
/*
6666
// Display InputType.SOURCE/CLASS of events and devices
6767
//

include/SDL3/SDL.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121

2222
/**
23-
* Main include header for the SDL library, version 3.3.4
23+
* Main include header for the SDL library, version 3.3.5
2424
*
2525
* It is almost always best to include just this one header instead of
2626
* picking out individual headers included here. There are exceptions to

include/SDL3/SDL_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ extern "C" {
6262
*
6363
* \since This macro is available since SDL 3.2.0.
6464
*/
65-
#define SDL_MICRO_VERSION 4
65+
#define SDL_MICRO_VERSION 5
6666

6767
/**
6868
* This macro turns the version numbers into a numeric value.

src/core/windows/version.rc

Lines changed: 4 additions & 4 deletions
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 3,3,4,0
13-
PRODUCTVERSION 3,3,4,0
12+
FILEVERSION 3,3,5,0
13+
PRODUCTVERSION 3,3,5,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", "3, 3, 4, 0\0"
26+
VALUE "FileVersion", "3, 3, 5, 0\0"
2727
VALUE "InternalName", "SDL\0"
2828
VALUE "LegalCopyright", "Copyright (C) 2025 Sam Lantinga\0"
2929
VALUE "OriginalFilename", "SDL3.dll\0"
3030
VALUE "ProductName", "Simple DirectMedia Layer\0"
31-
VALUE "ProductVersion", "3, 3, 4, 0\0"
31+
VALUE "ProductVersion", "3, 3, 5, 0\0"
3232
END
3333
END
3434
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)