Skip to content

Commit

Permalink
Updated to version 3.2.4 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Mar 3, 2025
1 parent d185bae commit 11154af
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
# See docs/release_checklist.md
set(MAJOR_VERSION 3)
set(MINOR_VERSION 2)
set(MICRO_VERSION 3)
set(MICRO_VERSION 4)
set(SDL_REQUIRED_VERSION 3.2.6)

project(SDL3_image
Expand Down
4 changes: 2 additions & 2 deletions Xcode/Info-Framework.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.2.3</string>
<string>3.2.4</string>
<key>CFBundleVersion</key>
<string>3.2.3</string>
<string>3.2.4</string>
</dict>
</plist>
8 changes: 4 additions & 4 deletions Xcode/SDL_image.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@
ALLOW_TARGET_PLATFORM_SPECIALIZATION = YES;
COPY_PHASE_STRIP = NO;
DYLIB_COMPATIBILITY_VERSION = 201.0.0;
DYLIB_CURRENT_VERSION = 201.3.0;
DYLIB_CURRENT_VERSION = 201.4.0;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = YES;
"FRAMEWORK_SEARCH_PATHS[sdk=appletv*]" = "\"$(PROJECT_DIR)/iOS\"";
Expand Down Expand Up @@ -647,7 +647,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 3.2.3;
MARKETING_VERSION = 3.2.4;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = "org.libsdl.SDL3-image";
PRODUCT_NAME = SDL3_image;
Expand All @@ -671,7 +671,7 @@
ALLOW_TARGET_PLATFORM_SPECIALIZATION = YES;
DEPLOYMENT_POSTPROCESSING = YES;
DYLIB_COMPATIBILITY_VERSION = 201.0.0;
DYLIB_CURRENT_VERSION = 201.3.0;
DYLIB_CURRENT_VERSION = 201.4.0;
DYLIB_INSTALL_NAME_BASE = "@rpath";
"FRAMEWORK_SEARCH_PATHS[sdk=appletv*]" = "\"$(PROJECT_DIR)/iOS\"";
"FRAMEWORK_SEARCH_PATHS[sdk=iphone*]" = "\"$(PROJECT_DIR)/iOS\"";
Expand Down Expand Up @@ -712,7 +712,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 3.2.3;
MARKETING_VERSION = 3.2.4;
PRODUCT_BUNDLE_IDENTIFIER = "org.libsdl.SDL3-image";
PRODUCT_NAME = SDL3_image;
SUPPORTED_PLATFORMS = "watchsimulator watchos macosx iphonesimulator iphoneos driverkit appletvsimulator appletvos";
Expand Down
2 changes: 1 addition & 1 deletion include/SDL3_image/SDL_image.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ extern "C" {
*/
#define SDL_IMAGE_MAJOR_VERSION 3
#define SDL_IMAGE_MINOR_VERSION 2
#define SDL_IMAGE_MICRO_VERSION 3
#define SDL_IMAGE_MICRO_VERSION 4

/**
* This is the version number macro for the current SDL_image version.
Expand Down
8 changes: 4 additions & 4 deletions src/version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,2,3,0
PRODUCTVERSION 3,2,3,0
FILEVERSION 3,2,4,0
PRODUCTVERSION 3,2,4,0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0x0L
FILEOS 0x40004L
Expand All @@ -23,12 +23,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "\0"
VALUE "FileDescription", "SDL_image\0"
VALUE "FileVersion", "3, 2, 3, 0\0"
VALUE "FileVersion", "3, 2, 4, 0\0"
VALUE "InternalName", "SDL_image\0"
VALUE "LegalCopyright", "Copyright (C) 2025 Sam Lantinga\0"
VALUE "OriginalFilename", "SDL3_image.dll\0"
VALUE "ProductName", "Simple DirectMedia Layer\0"
VALUE "ProductVersion", "3, 2, 3, 0\0"
VALUE "ProductVersion", "3, 2, 4, 0\0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 11154af

Please sign in to comment.