Skip to content

Commit

Permalink
Updated to version 3.1.2 for the release candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Feb 21, 2025
1 parent 26a403d commit fc618f0
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 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 1)
set(MICRO_VERSION 1)
set(MICRO_VERSION 2)
set(SDL_REQUIRED_VERSION 3.2.0)

project(SDL3_ttf
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.1.1</string>
<string>3.1.2</string>
<key>CFBundleVersion</key>
<string>3.1.1</string>
<string>3.1.2</string>
</dict>
</plist>
12 changes: 6 additions & 6 deletions Xcode/SDL_ttf.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -668,8 +668,8 @@
CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
CLANG_CXX_LIBRARY = "libc++";
COPY_PHASE_STRIP = NO;
DYLIB_COMPATIBILITY_VERSION = 102.0.0;
DYLIB_CURRENT_VERSION = 102.0.0;
DYLIB_COMPATIBILITY_VERSION = 103.0.0;
DYLIB_CURRENT_VERSION = 103.0.0;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = YES;
"FRAMEWORK_SEARCH_PATHS[sdk=appletv*]" = "\"$(PROJECT_DIR)/iOS\"";
Expand Down Expand Up @@ -700,7 +700,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 3.1.1;
MARKETING_VERSION = 3.1.2;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = "org.libsdl.SDL3-ttf";
PRODUCT_NAME = SDL3_ttf;
Expand All @@ -724,8 +724,8 @@
CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
CLANG_CXX_LIBRARY = "libc++";
DEPLOYMENT_POSTPROCESSING = YES;
DYLIB_COMPATIBILITY_VERSION = 102.0.0;
DYLIB_CURRENT_VERSION = 102.0.0;
DYLIB_COMPATIBILITY_VERSION = 103.0.0;
DYLIB_CURRENT_VERSION = 103.0.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 @@ -755,7 +755,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 3.1.1;
MARKETING_VERSION = 3.1.2;
PRODUCT_BUNDLE_IDENTIFIER = "org.libsdl.SDL3-ttf";
PRODUCT_NAME = SDL3_ttf;
SUPPORTED_PLATFORMS = "watchsimulator watchos macosx iphonesimulator iphoneos driverkit appletvsimulator appletvos";
Expand Down
2 changes: 1 addition & 1 deletion include/SDL3_ttf/SDL_ttf.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extern "C" {
*/
#define SDL_TTF_MAJOR_VERSION 3
#define SDL_TTF_MINOR_VERSION 1
#define SDL_TTF_MICRO_VERSION 1
#define SDL_TTF_MICRO_VERSION 2

/**
* This is the version number macro for the current SDL_ttf 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,1,1,0
PRODUCTVERSION 3,1,1,0
FILEVERSION 3,1,2,0
PRODUCTVERSION 3,1,2,0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0x0L
FILEOS 0x40004L
Expand All @@ -23,12 +23,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "\0"
VALUE "FileDescription", "SDL_ttf\0"
VALUE "FileVersion", "3, 1, 1, 0\0"
VALUE "FileVersion", "3, 1, 2, 0\0"
VALUE "InternalName", "SDL_ttf\0"
VALUE "LegalCopyright", "Copyright (C) 2025 Sam Lantinga\0"
VALUE "OriginalFilename", "SDL3_ttf.dll\0"
VALUE "ProductName", "Simple DirectMedia Layer\0"
VALUE "ProductVersion", "3, 1, 1, 0\0"
VALUE "ProductVersion", "3, 1, 2, 0\0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit fc618f0

Please sign in to comment.