Skip to content

Commit ae0fb29

Browse files
committed
version: Bumping to 1.2.54 for release candidate.
(Actual release will bump to 1.2.56, and then revision control will go to 1.2.57 for work, next release candidate will be 1.2.58, the 1.2.60, etc.)
1 parent e285141 commit ae0fb29

7 files changed

+11
-11
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
cmake_minimum_required(VERSION 3.0.0)
66
project(sdl12_compat
7-
VERSION 1.2.53
7+
VERSION 1.2.54
88
LANGUAGES C)
99

1010
option(SDL12TESTS "Enable to build SDL-1.2 test programs" ON)
@@ -22,7 +22,7 @@ if(APPLE)
2222
set_source_files_properties(${OSX_SRCS} PROPERTIES LANGUAGE C)
2323
# the following matches SDL-1.2 Xcode project file
2424
set(DYLIB_COMPAT_VERSION 1.0.0 CACHE STRING "library compatibility version")
25-
set(DYLIB_CURRENT_VERSION 12.53.0 CACHE STRING "library current version")
25+
set(DYLIB_CURRENT_VERSION 12.54.0 CACHE STRING "library current version")
2626
include_directories("/opt/X11/include") # hack.
2727
if(CMAKE_VERSION VERSION_LESS 3.9)
2828
else()

src/Makefile.darwin

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ CFLAGS = -mmacosx-version-min=10.6 -fPIC -O3 -Wall
1818
LDFLAGS = -mmacosx-version-min=10.6 -dynamiclib -Wl,-undefined,error -Wl,-single_module
1919
#LDFLAGS+= -Wl,-headerpad_max_install_names
2020
LDFLAGS+= -Wl,-install_name,"/usr/local/lib/$(DYLIB)"
21-
LDFLAGS+= -Wl,-compatibility_version,1.0 -Wl,-current_version,12.53
21+
LDFLAGS+= -Wl,-compatibility_version,1.0 -Wl,-current_version,12.54
2222
LDLIBS = -Wl,-framework,AppKit
2323
# this is needed for x86_64 - cross-gcc might not add it.
2424
#LDLIBS += -Wl,-lbundle1.o

src/Makefile.linux

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ LDFLAGS = -shared -Wl,-soname,libSDL-1.2.so.0
1616
LDFLAGS+= -Wl,--no-undefined
1717
LDLIBS = -ldl
1818

19-
SHLIB = libSDL-1.2.so.1.2.53
19+
SHLIB = libSDL-1.2.so.1.2.54
2020

2121
OBJ = SDL12_compat.o
2222

src/Makefile.os2

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
!endif
66

77
DLLNAME = SDL12
8-
VERSION = 1.2.53
8+
VERSION = 1.2.54
99

1010
# change SDL2INC to point to the SDL2 headers
1111
SDL2INC = include

src/Makefile.w32

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
!endif
66

77
DLLNAME = SDL
8-
VERSION = 1.2.53
8+
VERSION = 1.2.54
99

1010
# change SDL2INC to point to the SDL2 headers
1111
SDL2INC = include

src/SDL12_compat.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* should be way ahead of what SDL-1.2 Classic would report, so apps can
2929
* decide if they're running under the compat layer, if they really care.
3030
*/
31-
#define SDL12_COMPAT_VERSION 53
31+
#define SDL12_COMPAT_VERSION 54
3232

3333
#include <stdarg.h>
3434
#include <limits.h>

src/version.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
44

55
VS_VERSION_INFO VERSIONINFO
6-
FILEVERSION 1,2,53,0
7-
PRODUCTVERSION 1,2,53,0
6+
FILEVERSION 1,2,54,0
7+
PRODUCTVERSION 1,2,54,0
88
FILEFLAGSMASK 0x3fL
99
FILEFLAGS 0x0L
1010
FILEOS 0x40004L
@@ -17,12 +17,12 @@ BEGIN
1717
BEGIN
1818
VALUE "CompanyName", "\0"
1919
VALUE "FileDescription", "SDL\0"
20-
VALUE "FileVersion", "1, 2, 53, 0\0"
20+
VALUE "FileVersion", "1, 2, 54, 0\0"
2121
VALUE "InternalName", "SDL\0"
2222
VALUE "LegalCopyright", "Copyright � 2022 Sam Lantinga\0"
2323
VALUE "OriginalFilename", "SDL.dll\0"
2424
VALUE "ProductName", "Simple DirectMedia Layer 1.2 wrapper\0"
25-
VALUE "ProductVersion", "1, 2, 53, 0\0"
25+
VALUE "ProductVersion", "1, 2, 54, 0\0"
2626
END
2727
END
2828
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)