Skip to content

Commit

Permalink
Updated version to 2.0.3 in preparation for release
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jan 29, 2018
1 parent 4c830d4 commit c800caf
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 10 deletions.
13 changes: 13 additions & 0 deletions CHANGES.txt
@@ -1,3 +1,16 @@
2.0.3:
Ryan Gordon - Sun Jan 28 21:28:16 PST 2018
* Fixed a number of security issues:
TALOS-2017-0488
TALOS-2017-0489
TALOS-2017-0490
TALOS-2017-0491
TALOS-2017-0497
TALOS-2017-0498
TALOS-2017-0499
Sam Lantinga - Sun Jan 28 21:24:10 PST 2018
* Added a dependency on SDL 2.0.8

2.0.2:
Sam Lantinga - Sat Oct 21 23:42:28 PDT 2017
* Added simple SVG image support based on Nano SVG
Expand Down
2 changes: 1 addition & 1 deletion SDL_image.h
Expand Up @@ -37,7 +37,7 @@ extern "C" {
*/
#define SDL_IMAGE_MAJOR_VERSION 2
#define SDL_IMAGE_MINOR_VERSION 0
#define SDL_IMAGE_PATCHLEVEL 2
#define SDL_IMAGE_PATCHLEVEL 3

/* This macro can be used to fill a version structure with the compile-time
* version of the SDL_image library.
Expand Down
4 changes: 2 additions & 2 deletions Xcode/Info-Framework.plist
Expand Up @@ -15,8 +15,8 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.0.2</string>
<string>2.0.3</string>
<key>CFBundleVersion</key>
<string>2.0.2</string>
<string>2.0.3</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -2475,7 +2475,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu

MAJOR_VERSION=2
MINOR_VERSION=0
MICRO_VERSION=2
MICRO_VERSION=3
INTERFACE_AGE=0
BINARY_AGE=2
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -13,7 +13,7 @@ dnl Set various version strings - taken gratefully from the GTk sources

MAJOR_VERSION=2
MINOR_VERSION=0
MICRO_VERSION=2
MICRO_VERSION=3
INTERFACE_AGE=0
BINARY_AGE=2
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
@@ -1,3 +1,9 @@
libsdl2-image (2.0.3) UNRELEASED; urgency=low

* Updated to version 2.0.3

-- Sam Lantinga <slouken@libsdl.org> Sun, 28 Jan 2018 21:31:07 -0800

libsdl2-image (2.0.2) UNRELEASED; urgency=low

* Updated to version 2.0.2
Expand Down
10 changes: 5 additions & 5 deletions version.rc
Expand Up @@ -9,8 +9,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//

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

0 comments on commit c800caf

Please sign in to comment.