Skip to content

Commit d49b44d

Browse files
committed
Bumped version to 1.2.56 for release!
1 parent fe114a1 commit d49b44d

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
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.54
7+
VERSION 1.2.56
88
LANGUAGES C)
99

1010
option(SDL12TESTS "Enable to build SDL-1.2 test programs" ON)
@@ -24,7 +24,7 @@ if(APPLE)
2424
# Xcode project file uses 1.0.0, but it's more compatible to use the
2525
# higher version.
2626
set(DYLIB_COMPAT_VERSION 12.0.0 CACHE STRING "library compatibility version")
27-
set(DYLIB_CURRENT_VERSION 12.54.0 CACHE STRING "library current version")
27+
set(DYLIB_CURRENT_VERSION 12.56.0 CACHE STRING "library current version")
2828
include_directories("/opt/X11/include") # hack.
2929
if(CMAKE_VERSION VERSION_LESS 3.9)
3030
else()

include/SDL/SDL_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ real SDL-1.2 available to you. */
3333
/* We bumped the patchlevel to 50 for sdl12-compat */
3434
#define SDL_MAJOR_VERSION 1
3535
#define SDL_MINOR_VERSION 2
36-
#define SDL_PATCHLEVEL 54
36+
#define SDL_PATCHLEVEL 56
3737

3838
typedef struct SDL_version
3939
{

src/Makefile.darwin

Lines changed: 1 addition & 1 deletion
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.54
21+
LDFLAGS+= -Wl,-compatibility_version,1.0 -Wl,-current_version,12.56
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

Lines changed: 1 addition & 1 deletion
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.54
19+
SHLIB = libSDL-1.2.so.1.2.56
2020

2121
OBJ = SDL12_compat.o
2222

src/Makefile.os2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
!endif
66

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

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

src/Makefile.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
!endif
66

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

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

src/SDL12_compat.c

Lines changed: 1 addition & 1 deletion
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 54
31+
#define SDL12_COMPAT_VERSION 56
3232

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

src/version.rc

Lines changed: 4 additions & 4 deletions
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,54,0
7-
PRODUCTVERSION 1,2,54,0
6+
FILEVERSION 1,2,56,0
7+
PRODUCTVERSION 1,2,56,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, 54, 0\0"
20+
VALUE "FileVersion", "1, 2, 56, 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, 54, 0\0"
25+
VALUE "ProductVersion", "1, 2, 56, 0\0"
2626
END
2727
END
2828
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)