Skip to content

Commit b0df1cb

Browse files
committed
Updated to version 3.3.0 for development
1 parent 6586419 commit b0df1cb

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

CMakeLists.txt

+1-1
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.2.6")
8+
project(SDL3 LANGUAGES C VERSION "3.3.0")
99

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

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>3.2.6</string>
22+
<string>3.3.0</string>
2323
<key>CFBundleSignature</key>
2424
<string>SDLX</string>
2525
<key>CFBundleVersion</key>
26-
<string>3.2.6</string>
26+
<string>3.3.0</string>
2727
</dict>
2828
</plist>

Xcode/SDL/SDL.xcodeproj/project.pbxproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -3085,8 +3085,8 @@
30853085
CLANG_ENABLE_MODULES = YES;
30863086
CLANG_ENABLE_OBJC_ARC = YES;
30873087
DEPLOYMENT_POSTPROCESSING = YES;
3088-
DYLIB_COMPATIBILITY_VERSION = 201.0.0;
3089-
DYLIB_CURRENT_VERSION = 201.6.0;
3088+
DYLIB_COMPATIBILITY_VERSION = 301.0.0;
3089+
DYLIB_CURRENT_VERSION = 301.0.0;
30903090
DYLIB_INSTALL_NAME_BASE = "@rpath";
30913091
ENABLE_STRICT_OBJC_MSGSEND = YES;
30923092
GCC_ALTIVEC_EXTENSIONS = YES;
@@ -3121,7 +3121,7 @@
31213121
"@loader_path/Frameworks",
31223122
);
31233123
MACOSX_DEPLOYMENT_TARGET = 10.13;
3124-
MARKETING_VERSION = 3.2.6;
3124+
MARKETING_VERSION = 3.3.0;
31253125
OTHER_LDFLAGS = "$(CONFIG_FRAMEWORK_LDFLAGS)";
31263126
PRODUCT_BUNDLE_IDENTIFIER = org.libsdl.SDL3;
31273127
PRODUCT_NAME = SDL3;
@@ -3149,8 +3149,8 @@
31493149
ALLOW_TARGET_PLATFORM_SPECIALIZATION = YES;
31503150
CLANG_ENABLE_MODULES = YES;
31513151
CLANG_ENABLE_OBJC_ARC = YES;
3152-
DYLIB_COMPATIBILITY_VERSION = 201.0.0;
3153-
DYLIB_CURRENT_VERSION = 201.6.0;
3152+
DYLIB_COMPATIBILITY_VERSION = 301.0.0;
3153+
DYLIB_CURRENT_VERSION = 301.0.0;
31543154
DYLIB_INSTALL_NAME_BASE = "@rpath";
31553155
ENABLE_STRICT_OBJC_MSGSEND = YES;
31563156
ENABLE_TESTABILITY = YES;
@@ -3182,7 +3182,7 @@
31823182
"@loader_path/Frameworks",
31833183
);
31843184
MACOSX_DEPLOYMENT_TARGET = 10.13;
3185-
MARKETING_VERSION = 3.2.6;
3185+
MARKETING_VERSION = 3.3.0;
31863186
ONLY_ACTIVE_ARCH = YES;
31873187
OTHER_LDFLAGS = "$(CONFIG_FRAMEWORK_LDFLAGS)";
31883188
PRODUCT_BUNDLE_IDENTIFIER = org.libsdl.SDL3;

Xcode/SDL/pkg-support/SDL.info

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
public class SDLActivity extends Activity implements View.OnSystemUiVisibilityChangeListener {
6060
private static final String TAG = "SDL";
6161
private static final int SDL_MAJOR_VERSION = 3;
62-
private static final int SDL_MINOR_VERSION = 2;
63-
private static final int SDL_MICRO_VERSION = 6;
62+
private static final int SDL_MINOR_VERSION = 3;
63+
private static final int SDL_MICRO_VERSION = 0;
6464
/*
6565
// Display InputType.SOURCE/CLASS of events and devices
6666
//

include/SDL3/SDL.h

+1-1
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.2.6
23+
* Main include header for the SDL library, version 3.3.0
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ extern "C" {
5353
*
5454
* \since This macro is available since SDL 3.2.0.
5555
*/
56-
#define SDL_MINOR_VERSION 2
56+
#define SDL_MINOR_VERSION 3
5757

5858
/**
5959
* The current micro (or patchlevel) version of the SDL headers.
@@ -62,7 +62,7 @@ extern "C" {
6262
*
6363
* \since This macro is available since SDL 3.2.0.
6464
*/
65-
#define SDL_MICRO_VERSION 6
65+
#define SDL_MICRO_VERSION 0
6666

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

src/core/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 3,2,6,0
13-
PRODUCTVERSION 3,2,6,0
12+
FILEVERSION 3,3,0,0
13+
PRODUCTVERSION 3,3,0,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, 2, 6, 0\0"
26+
VALUE "FileVersion", "3, 3, 0, 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, 2, 6, 0\0"
31+
VALUE "ProductVersion", "3, 3, 0, 0\0"
3232
END
3333
END
3434
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)