Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1cf51b6

Browse files
committedJul 12, 2022
Updated to version 2.6.1 for release
1 parent 83bc3dd commit 1cf51b6

File tree

10 files changed

+37
-34
lines changed

10 files changed

+37
-34
lines changed
 

‎CHANGES.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2.6.1:
2+
* Fixed issue with incorrect version reported by pkg-config
3+
14
2.6.0:
25
* Added support for building with CMake
36
* Added support for playing Ogg files using stb_vorbis, which is now the default Vorbis backend.

‎CMakeLists.txt

+1-1
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 6)
8-
set(MICRO_VERSION 0)
8+
set(MICRO_VERSION 1)
99
set(SDL_REQUIRED_VERSION 2.0.9)
1010

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

‎Makefile.os2

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
LIBNAME = SDL2mix
88
MAJOR_VERSION = 2
99
MINOR_VERSION = 6
10-
MICRO_VERSION = 0
10+
MICRO_VERSION = 1
1111
VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(MICRO_VERSION)
1212

1313
TITLENAME = $(LIBNAME) $(VERSION)

‎VisualC/Version.rc

+4-4
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,6,0,0
32-
PRODUCTVERSION 2,6,0,0
31+
FILEVERSION 2,6,1,0
32+
PRODUCTVERSION 2,6,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_mixer\0"
49-
VALUE "FileVersion", "2, 6, 0, 0\0"
49+
VALUE "FileVersion", "2, 6, 1, 0\0"
5050
VALUE "InternalName", "SDL_mixer\0"
5151
VALUE "LegalCopyright", "Copyright � 2022 Sam Lantinga\0"
5252
VALUE "OriginalFilename", "SDL_mixer.dll\0"
5353
VALUE "ProductName", "Simple DirectMedia Layer\0"
54-
VALUE "ProductVersion", "2, 6, 0, 0\0"
54+
VALUE "ProductVersion", "2, 6, 1, 0\0"
5555
END
5656
END
5757
BLOCK "VarFileInfo"

‎Xcode/Info-Framework.plist

+2-2
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.6.0</string>
18+
<string>2.6.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>2.6.0</string>
20+
<string>2.6.1</string>
2121
</dict>
2222
</plist>

‎Xcode/SDL_mixer.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@
753753
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
754754
DEPLOYMENT_POSTPROCESSING = YES;
755755
DYLIB_COMPATIBILITY_VERSION = 3.0.0;
756-
DYLIB_CURRENT_VERSION = 601.0.0;
756+
DYLIB_CURRENT_VERSION = 601.1.0;
757757
DYLIB_INSTALL_NAME_BASE = "@rpath";
758758
FRAMEWORK_SEARCH_PATHS = "\"$(SRCROOT)/$(PLATFORM)\"";
759759
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
@@ -802,7 +802,7 @@
802802
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
803803
COPY_PHASE_STRIP = NO;
804804
DYLIB_COMPATIBILITY_VERSION = 3.0.0;
805-
DYLIB_CURRENT_VERSION = 601.0.0;
805+
DYLIB_CURRENT_VERSION = 601.1.0;
806806
DYLIB_INSTALL_NAME_BASE = "@rpath";
807807
ENABLE_TESTABILITY = YES;
808808
FRAMEWORK_SEARCH_PATHS = "\"$(SRCROOT)/$(PLATFORM)\"";

‎configure

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.71 for SDL2_mixer 2.6.0.
3+
# Generated by GNU Autoconf 2.71 for SDL2_mixer 2.6.1.
44
#
55
# Report bugs to <https://github.com/libsdl-org/SDL_mixer/issues>.
66
#
@@ -760,8 +760,8 @@ MAKEFLAGS=
760760
# Identity of this package.
761761
PACKAGE_NAME='SDL2_mixer'
762762
PACKAGE_TARNAME='SDL2_mixer'
763-
PACKAGE_VERSION='2.6.0'
764-
PACKAGE_STRING='SDL2_mixer 2.6.0'
763+
PACKAGE_VERSION='2.6.1'
764+
PACKAGE_STRING='SDL2_mixer 2.6.1'
765765
PACKAGE_BUGREPORT='https://github.com/libsdl-org/SDL_mixer/issues'
766766
PACKAGE_URL=''
767767

@@ -1574,7 +1574,7 @@ if test "$ac_init_help" = "long"; then
15741574
# Omit some internal or obsolete options to make the list less imposing.
15751575
# This message is too long to be a string in the A/UX 3.1 sh.
15761576
cat <<_ACEOF
1577-
\`configure' configures SDL2_mixer 2.6.0 to adapt to many kinds of systems.
1577+
\`configure' configures SDL2_mixer 2.6.1 to adapt to many kinds of systems.
15781578

15791579
Usage: $0 [OPTION]... [VAR=VALUE]...
15801580

@@ -1640,7 +1640,7 @@ fi
16401640

16411641
if test -n "$ac_init_help"; then
16421642
case $ac_init_help in
1643-
short | recursive ) echo "Configuration of SDL2_mixer 2.6.0:";;
1643+
short | recursive ) echo "Configuration of SDL2_mixer 2.6.1:";;
16441644
esac
16451645
cat <<\_ACEOF
16461646

@@ -1827,7 +1827,7 @@ fi
18271827
test -n "$ac_init_help" && exit $ac_status
18281828
if $ac_init_version; then
18291829
cat <<\_ACEOF
1830-
SDL2_mixer configure 2.6.0
1830+
SDL2_mixer configure 2.6.1
18311831
generated by GNU Autoconf 2.71
18321832

18331833
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2212,7 +2212,7 @@ cat >config.log <<_ACEOF
22122212
This file contains any messages produced by compilers while
22132213
running configure, to aid debugging if configure makes a mistake.
22142214

2215-
It was created by SDL2_mixer $as_me 2.6.0, which was
2215+
It was created by SDL2_mixer $as_me 2.6.1, which was
22162216
generated by GNU Autoconf 2.71. Invocation command line was
22172217

22182218
$ $0$ac_configure_args_raw
@@ -3190,7 +3190,7 @@ MAJOR_VERSION=2
31903190

31913191
MINOR_VERSION=6
31923192

3193-
MICRO_VERSION=0
3193+
MICRO_VERSION=1
31943194

31953195

31963196
BINARY_AGE=`expr $MINOR_VERSION \* 100 + $MICRO_VERSION`
@@ -12188,11 +12188,11 @@ if test x$ac_prog_cxx_stdcxx = xno
1218812188
then :
1218912189
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++11 features" >&5
1219012190
printf %s "checking for $CXX option to enable C++11 features... " >&6; }
12191-
if test ${ac_cv_prog_cxx_cxx11+y}
12191+
if test ${ac_cv_prog_cxx_11+y}
1219212192
then :
1219312193
printf %s "(cached) " >&6
1219412194
else $as_nop
12195-
ac_cv_prog_cxx_cxx11=no
12195+
ac_cv_prog_cxx_11=no
1219612196
ac_save_CXX=$CXX
1219712197
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1219812198
/* end confdefs.h. */
@@ -12234,11 +12234,11 @@ if test x$ac_prog_cxx_stdcxx = xno
1223412234
then :
1223512235
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++98 features" >&5
1223612236
printf %s "checking for $CXX option to enable C++98 features... " >&6; }
12237-
if test ${ac_cv_prog_cxx_cxx98+y}
12237+
if test ${ac_cv_prog_cxx_98+y}
1223812238
then :
1223912239
printf %s "(cached) " >&6
1224012240
else $as_nop
12241-
ac_cv_prog_cxx_cxx98=no
12241+
ac_cv_prog_cxx_98=no
1224212242
ac_save_CXX=$CXX
1224312243
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1224412244
/* end confdefs.h. */
@@ -12558,11 +12558,11 @@ if test x$ac_prog_cxx_stdcxx = xno
1255812558
then :
1255912559
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++11 features" >&5
1256012560
printf %s "checking for $CXX option to enable C++11 features... " >&6; }
12561-
if test ${ac_cv_prog_cxx_cxx11+y}
12561+
if test ${ac_cv_prog_cxx_11+y}
1256212562
then :
1256312563
printf %s "(cached) " >&6
1256412564
else $as_nop
12565-
ac_cv_prog_cxx_cxx11=no
12565+
ac_cv_prog_cxx_11=no
1256612566
ac_save_CXX=$CXX
1256712567
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1256812568
/* end confdefs.h. */
@@ -12604,11 +12604,11 @@ if test x$ac_prog_cxx_stdcxx = xno
1260412604
then :
1260512605
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++98 features" >&5
1260612606
printf %s "checking for $CXX option to enable C++98 features... " >&6; }
12607-
if test ${ac_cv_prog_cxx_cxx98+y}
12607+
if test ${ac_cv_prog_cxx_98+y}
1260812608
then :
1260912609
printf %s "(cached) " >&6
1261012610
else $as_nop
12611-
ac_cv_prog_cxx_cxx98=no
12611+
ac_cv_prog_cxx_98=no
1261212612
ac_save_CXX=$CXX
1261312613
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1261412614
/* end confdefs.h. */
@@ -19505,7 +19505,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1950519505
# report actual input values of CONFIG_FILES etc. instead of their
1950619506
# values after options handling.
1950719507
ac_log="
19508-
This file was extended by SDL2_mixer $as_me 2.6.0, which was
19508+
This file was extended by SDL2_mixer $as_me 2.6.1, which was
1950919509
generated by GNU Autoconf 2.71. Invocation command line was
1951019510

1951119511
CONFIG_FILES = $CONFIG_FILES
@@ -19564,7 +19564,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
1956419564
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1956519565
ac_cs_config='$ac_cs_config_escaped'
1956619566
ac_cs_version="\\
19567-
SDL2_mixer config.status 2.6.0
19567+
SDL2_mixer config.status 2.6.1
1956819568
configured by $0, generated by GNU Autoconf 2.71,
1956919569
with options \\"\$ac_cs_config\\"
1957019570

‎configure.ac

+1-1
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 release_checklist.md
55
m4_define([MAJOR_VERSION_MACRO], [2])
66
m4_define([MINOR_VERSION_MACRO], [6])
7-
m4_define([MICRO_VERSION_MACRO], [0])
7+
m4_define([MICRO_VERSION_MACRO], [1])
88

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

‎include/SDL_mixer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ extern "C" {
4646
*/
4747
#define SDL_MIXER_MAJOR_VERSION 2
4848
#define SDL_MIXER_MINOR_VERSION 6
49-
#define SDL_MIXER_PATCHLEVEL 0
49+
#define SDL_MIXER_PATCHLEVEL 1
5050

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

‎version.rc

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

0 commit comments

Comments
 (0)
Please sign in to comment.