Skip to content

Commit

Permalink
update the SDL version number to 1.2.16
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Aug 3, 2019
1 parent 6ae7110 commit 762dbb3
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions Xcode/SDL/Info-Framework.plist
Expand Up @@ -19,10 +19,10 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.2.15</string>
<string>1.2.16</string>
<key>CFBundleSignature</key>
<string>SDLX</string>
<key>CFBundleVersion</key>
<string>1.2.15</string>
<string>1.2.16</string>
</dict>
</plist>
4 changes: 2 additions & 2 deletions Xcode/SDL/SDL.xcodeproj/project.pbxproj
Expand Up @@ -1724,7 +1724,7 @@
isa = XCBuildConfiguration;
buildSettings = {
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 12.4;
DYLIB_CURRENT_VERSION = 12.5;
FRAMEWORK_VERSION = A;
GCC_PREPROCESSOR_DEFINITIONS = (
"$(GCC_PREPROCESSOR_DEFINITIONS)",
Expand Down Expand Up @@ -1818,7 +1818,7 @@
isa = XCBuildConfiguration;
buildSettings = {
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 12.4;
DYLIB_CURRENT_VERSION = 12.5;
FRAMEWORK_VERSION = A;
GCC_PREPROCESSOR_DEFINITIONS = (
"$(GCC_PREPROCESSOR_DEFINITIONS)",
Expand Down
2 changes: 1 addition & 1 deletion Xcode/XcodeDocSet/Doxyfile
Expand Up @@ -31,7 +31,7 @@ PROJECT_NAME = SDL
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 1.2.14
PROJECT_NUMBER = 1.2.16

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Expand Down
6 changes: 3 additions & 3 deletions configure
Expand Up @@ -4051,9 +4051,9 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
#
SDL_MAJOR_VERSION=1
SDL_MINOR_VERSION=2
SDL_MICRO_VERSION=15
SDL_INTERFACE_AGE=4
SDL_BINARY_AGE=15
SDL_MICRO_VERSION=16
SDL_INTERFACE_AGE=5
SDL_BINARY_AGE=16
SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION


Expand Down
6 changes: 3 additions & 3 deletions configure.in
Expand Up @@ -17,9 +17,9 @@ dnl Set various version strings - taken gratefully from the GTk sources
#
SDL_MAJOR_VERSION=1
SDL_MINOR_VERSION=2
SDL_MICRO_VERSION=15
SDL_INTERFACE_AGE=4
SDL_BINARY_AGE=15
SDL_MICRO_VERSION=16
SDL_INTERFACE_AGE=5
SDL_BINARY_AGE=16
SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION

AC_SUBST(SDL_MAJOR_VERSION)
Expand Down
2 changes: 1 addition & 1 deletion include/SDL_version.h
Expand Up @@ -41,7 +41,7 @@ extern "C" {
/*@{*/
#define SDL_MAJOR_VERSION 1
#define SDL_MINOR_VERSION 2
#define SDL_PATCHLEVEL 15
#define SDL_PATCHLEVEL 16
/*@}*/

typedef struct SDL_version {
Expand Down
2 changes: 1 addition & 1 deletion include/doxyfile
Expand Up @@ -23,7 +23,7 @@ PROJECT_NAME = SDL
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 1.2.15
PROJECT_NUMBER = 1.2.16

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Expand Down
10 changes: 5 additions & 5 deletions src/main/win32/version.rc
Expand Up @@ -9,8 +9,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,2,15,0
PRODUCTVERSION 1,2,15,0
FILEVERSION 1,2,16,0
PRODUCTVERSION 1,2,16,0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0x0L
FILEOS 0x40004L
Expand All @@ -23,12 +23,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "\0"
VALUE "FileDescription", "SDL\0"
VALUE "FileVersion", "1, 2, 15, 0\0"
VALUE "FileVersion", "1, 2, 16, 0\0"
VALUE "InternalName", "SDL\0"
VALUE "LegalCopyright", "Copyright � 2012 Sam Lantinga\0"
VALUE "LegalCopyright", "Copyright � 2019 Sam Lantinga\0"
VALUE "OriginalFilename", "SDL.dll\0"
VALUE "ProductName", "Simple DirectMedia Layer\0"
VALUE "ProductVersion", "1, 2, 15, 0\0"
VALUE "ProductVersion", "1, 2, 16, 0\0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 762dbb3

Please sign in to comment.