Skip to content

Commit 0a652b5

Browse files
committed
Updated to version 2.20.1 for release
1 parent e1e1181 commit 0a652b5

File tree

9 files changed

+19
-16
lines changed

9 files changed

+19
-16
lines changed

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2.22.1:
2+
* Updated autotools to use ax_compute_relative_paths, fixing homebrew on macOS
3+
14
2.20.0:
25
* Added support for building with CMake
36
* Added TTF_GetFontWrappedAlign() and TTF_SetFontWrappedAlign() to set alignment on wrapped text

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
55
# See docs/release_checklist.md
66
set(MAJOR_VERSION 2)
77
set(MINOR_VERSION 20)
8-
set(MICRO_VERSION 0)
8+
set(MICRO_VERSION 1)
99
set(SDL_REQUIRED_VERSION 2.0.10)
1010

1111
# For historical reasons this is 15.0.0 rather than the expected 1.0.0

Makefile.os2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
LIBNAME = SDL2ttf
88
MAJOR_VERSION = 2
99
MINOR_VERSION = 20
10-
MICRO_VERSION = 0
10+
MICRO_VERSION = 1
1111
VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(MICRO_VERSION)
1212

1313
TITLENAME = $(LIBNAME) $(VERSION)

SDL_ttf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ extern "C" {
4949
*/
5050
#define SDL_TTF_MAJOR_VERSION 2
5151
#define SDL_TTF_MINOR_VERSION 20
52-
#define SDL_TTF_PATCHLEVEL 0
52+
#define SDL_TTF_PATCHLEVEL 1
5353

5454
/**
5555
* This macro can be used to fill a version structure with the compile-time

VisualC/Version.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
2828
//
2929

3030
VS_VERSION_INFO VERSIONINFO
31-
FILEVERSION 2,20,0,0
32-
PRODUCTVERSION 2,20,0,0
31+
FILEVERSION 2,20,1,0
32+
PRODUCTVERSION 2,20,1,0
3333
FILEFLAGSMASK 0x3fL
3434
#ifdef _DEBUG
3535
FILEFLAGS 0x1L
@@ -46,12 +46,12 @@ BEGIN
4646
BEGIN
4747
VALUE "CompanyName", "\0"
4848
VALUE "FileDescription", "SDL_ttf\0"
49-
VALUE "FileVersion", "2, 20, 0, 0\0"
49+
VALUE "FileVersion", "2, 20, 1, 0\0"
5050
VALUE "InternalName", "SDL_ttf\0"
5151
VALUE "LegalCopyright", "Copyright � 2022 Sam Lantinga\0"
5252
VALUE "OriginalFilename", "SDL_ttf.dll\0"
5353
VALUE "ProductName", "Simple DirectMedia Layer\0"
54-
VALUE "ProductVersion", "2, 20, 0, 0\0"
54+
VALUE "ProductVersion", "2, 20, 1, 0\0"
5555
END
5656
END
5757
BLOCK "VarFileInfo"

Xcode/Info-Framework.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.20.0</string>
18+
<string>2.20.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>2.20.0</string>
20+
<string>2.20.1</string>
2121
</dict>
2222
</plist>

Xcode/SDL_ttf.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@
985985
CLANG_CXX_LIBRARY = "libc++";
986986
COPY_PHASE_STRIP = NO;
987987
DYLIB_COMPATIBILITY_VERSION = 15.0.0;
988-
DYLIB_CURRENT_VERSION = 2001.0.0;
988+
DYLIB_CURRENT_VERSION = 2001.1.0;
989989
DYLIB_INSTALL_NAME_BASE = "@rpath";
990990
ENABLE_TESTABILITY = YES;
991991
FRAMEWORK_SEARCH_PATHS = "\"$(SRCROOT)/$(PLATFORM)\"";
@@ -1025,7 +1025,7 @@
10251025
CLANG_CXX_LIBRARY = "libc++";
10261026
DEPLOYMENT_POSTPROCESSING = YES;
10271027
DYLIB_COMPATIBILITY_VERSION = 15.0.0;
1028-
DYLIB_CURRENT_VERSION = 2001.0.0;
1028+
DYLIB_CURRENT_VERSION = 2001.1.0;
10291029
DYLIB_INSTALL_NAME_BASE = "@rpath";
10301030
FRAMEWORK_SEARCH_PATHS = "\"$(SRCROOT)/$(PLATFORM)\"";
10311031
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dnl Set various version strings - taken gratefully from the GTk sources
44
# See docs/release_checklist.md
55
m4_define([MAJOR_VERSION_MACRO], [2])
66
m4_define([MINOR_VERSION_MACRO], [20])
7-
m4_define([MICRO_VERSION_MACRO], [0])
7+
m4_define([MICRO_VERSION_MACRO], [1])
88

99
AC_INIT([SDL2_ttf],
1010
[MAJOR_VERSION_MACRO.MINOR_VERSION_MACRO.MICRO_VERSION_MACRO],

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 2,20,0,0
13-
PRODUCTVERSION 2,20,0,0
12+
FILEVERSION 2,20,1,0
13+
PRODUCTVERSION 2,20,1,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_ttf\0"
26-
VALUE "FileVersion", "2, 20, 0, 0\0"
26+
VALUE "FileVersion", "2, 20, 1, 0\0"
2727
VALUE "InternalName", "SDL_ttf\0"
2828
VALUE "LegalCopyright", "Copyright � 2022 Sam Lantinga\0"
2929
VALUE "OriginalFilename", "SDL_ttf.dll\0"
3030
VALUE "ProductName", "Simple DirectMedia Layer\0"
31-
VALUE "ProductVersion", "2, 20, 0, 0\0"
31+
VALUE "ProductVersion", "2, 20, 1, 0\0"
3232
END
3333
END
3434
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)