Skip to content

Commit dc9b96f

Browse files
committed
Updated version to 2.9.0 for development
1 parent b06c657 commit dc9b96f

File tree

9 files changed

+36
-36
lines changed

9 files changed

+36
-36
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
44

55
# See docs/release_checklist.md
66
set(MAJOR_VERSION 2)
7-
set(MINOR_VERSION 8)
7+
set(MINOR_VERSION 9)
88
set(MICRO_VERSION 0)
99
set(SDL_REQUIRED_VERSION 2.0.9)
1010

Makefile.os2

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
LIBNAME = SDL2mix
88
MAJOR_VERSION = 2
9-
MINOR_VERSION = 8
9+
MINOR_VERSION = 9
1010
MICRO_VERSION = 0
1111
VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(MICRO_VERSION)
1212

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,8,0,0
32-
PRODUCTVERSION 2,8,0,0
31+
FILEVERSION 2,9,0,0
32+
PRODUCTVERSION 2,9,0,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, 8, 0, 0\0"
49+
VALUE "FileVersion", "2, 9, 0, 0\0"
5050
VALUE "InternalName", "SDL_mixer\0"
5151
VALUE "LegalCopyright", "Copyright (C) 2025 Sam Lantinga\0"
5252
VALUE "OriginalFilename", "SDL_mixer.dll\0"
5353
VALUE "ProductName", "Simple DirectMedia Layer\0"
54-
VALUE "ProductVersion", "2, 8, 0, 0\0"
54+
VALUE "ProductVersion", "2, 9, 0, 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.8.0</string>
18+
<string>2.9.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>2.8.0</string>
20+
<string>2.9.0</string>
2121
</dict>
2222
</plist>

Xcode/SDL_mixer.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -844,8 +844,8 @@
844844
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
845845
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
846846
DEPLOYMENT_POSTPROCESSING = YES;
847-
DYLIB_COMPATIBILITY_VERSION = 801.0.0;
848-
DYLIB_CURRENT_VERSION = 801.0.0;
847+
DYLIB_COMPATIBILITY_VERSION = 901.0.0;
848+
DYLIB_CURRENT_VERSION = 901.0.0;
849849
DYLIB_INSTALL_NAME_BASE = "@rpath";
850850
FRAMEWORK_SEARCH_PATHS = "\"$(SRCROOT)/$(PLATFORM)\"";
851851
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
@@ -893,8 +893,8 @@
893893
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
894894
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
895895
COPY_PHASE_STRIP = NO;
896-
DYLIB_COMPATIBILITY_VERSION = 801.0.0;
897-
DYLIB_CURRENT_VERSION = 801.0.0;
896+
DYLIB_COMPATIBILITY_VERSION = 901.0.0;
897+
DYLIB_CURRENT_VERSION = 901.0.0;
898898
DYLIB_INSTALL_NAME_BASE = "@rpath";
899899
ENABLE_TESTABILITY = YES;
900900
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.8.0.
3+
# Generated by GNU Autoconf 2.71 for SDL2_mixer 2.9.0.
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.8.0'
764-
PACKAGE_STRING='SDL2_mixer 2.8.0'
763+
PACKAGE_VERSION='2.9.0'
764+
PACKAGE_STRING='SDL2_mixer 2.9.0'
765765
PACKAGE_BUGREPORT='https://github.com/libsdl-org/SDL_mixer/issues'
766766
PACKAGE_URL=''
767767

@@ -1592,7 +1592,7 @@ if test "$ac_init_help" = "long"; then
15921592
# Omit some internal or obsolete options to make the list less imposing.
15931593
# This message is too long to be a string in the A/UX 3.1 sh.
15941594
cat <<_ACEOF
1595-
\`configure' configures SDL2_mixer 2.8.0 to adapt to many kinds of systems.
1595+
\`configure' configures SDL2_mixer 2.9.0 to adapt to many kinds of systems.
15961596

15971597
Usage: $0 [OPTION]... [VAR=VALUE]...
15981598

@@ -1658,7 +1658,7 @@ fi
16581658

16591659
if test -n "$ac_init_help"; then
16601660
case $ac_init_help in
1661-
short | recursive ) echo "Configuration of SDL2_mixer 2.8.0:";;
1661+
short | recursive ) echo "Configuration of SDL2_mixer 2.9.0:";;
16621662
esac
16631663
cat <<\_ACEOF
16641664

@@ -1859,7 +1859,7 @@ fi
18591859
test -n "$ac_init_help" && exit $ac_status
18601860
if $ac_init_version; then
18611861
cat <<\_ACEOF
1862-
SDL2_mixer configure 2.8.0
1862+
SDL2_mixer configure 2.9.0
18631863
generated by GNU Autoconf 2.71
18641864

18651865
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2244,7 +2244,7 @@ cat >config.log <<_ACEOF
22442244
This file contains any messages produced by compilers while
22452245
running configure, to aid debugging if configure makes a mistake.
22462246

2247-
It was created by SDL2_mixer $as_me 2.8.0, which was
2247+
It was created by SDL2_mixer $as_me 2.9.0, which was
22482248
generated by GNU Autoconf 2.71. Invocation command line was
22492249

22502250
$ $0$ac_configure_args_raw
@@ -3220,7 +3220,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
32203220

32213221
MAJOR_VERSION=2
32223222

3223-
MINOR_VERSION=8
3223+
MINOR_VERSION=9
32243224

32253225
MICRO_VERSION=0
32263226

@@ -12267,11 +12267,11 @@ if test x$ac_prog_cxx_stdcxx = xno
1226712267
then :
1226812268
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++11 features" >&5
1226912269
printf %s "checking for $CXX option to enable C++11 features... " >&6; }
12270-
if test ${ac_cv_prog_cxx_cxx11+y}
12270+
if test ${ac_cv_prog_cxx_11+y}
1227112271
then :
1227212272
printf %s "(cached) " >&6
1227312273
else $as_nop
12274-
ac_cv_prog_cxx_cxx11=no
12274+
ac_cv_prog_cxx_11=no
1227512275
ac_save_CXX=$CXX
1227612276
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1227712277
/* end confdefs.h. */
@@ -12313,11 +12313,11 @@ if test x$ac_prog_cxx_stdcxx = xno
1231312313
then :
1231412314
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++98 features" >&5
1231512315
printf %s "checking for $CXX option to enable C++98 features... " >&6; }
12316-
if test ${ac_cv_prog_cxx_cxx98+y}
12316+
if test ${ac_cv_prog_cxx_98+y}
1231712317
then :
1231812318
printf %s "(cached) " >&6
1231912319
else $as_nop
12320-
ac_cv_prog_cxx_cxx98=no
12320+
ac_cv_prog_cxx_98=no
1232112321
ac_save_CXX=$CXX
1232212322
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1232312323
/* end confdefs.h. */
@@ -12637,11 +12637,11 @@ if test x$ac_prog_cxx_stdcxx = xno
1263712637
then :
1263812638
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++11 features" >&5
1263912639
printf %s "checking for $CXX option to enable C++11 features... " >&6; }
12640-
if test ${ac_cv_prog_cxx_cxx11+y}
12640+
if test ${ac_cv_prog_cxx_11+y}
1264112641
then :
1264212642
printf %s "(cached) " >&6
1264312643
else $as_nop
12644-
ac_cv_prog_cxx_cxx11=no
12644+
ac_cv_prog_cxx_11=no
1264512645
ac_save_CXX=$CXX
1264612646
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1264712647
/* end confdefs.h. */
@@ -12683,11 +12683,11 @@ if test x$ac_prog_cxx_stdcxx = xno
1268312683
then :
1268412684
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++98 features" >&5
1268512685
printf %s "checking for $CXX option to enable C++98 features... " >&6; }
12686-
if test ${ac_cv_prog_cxx_cxx98+y}
12686+
if test ${ac_cv_prog_cxx_98+y}
1268712687
then :
1268812688
printf %s "(cached) " >&6
1268912689
else $as_nop
12690-
ac_cv_prog_cxx_cxx98=no
12690+
ac_cv_prog_cxx_98=no
1269112691
ac_save_CXX=$CXX
1269212692
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1269312693
/* end confdefs.h. */
@@ -20349,7 +20349,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2034920349
# report actual input values of CONFIG_FILES etc. instead of their
2035020350
# values after options handling.
2035120351
ac_log="
20352-
This file was extended by SDL2_mixer $as_me 2.8.0, which was
20352+
This file was extended by SDL2_mixer $as_me 2.9.0, which was
2035320353
generated by GNU Autoconf 2.71. Invocation command line was
2035420354

2035520355
CONFIG_FILES = $CONFIG_FILES
@@ -20408,7 +20408,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
2040820408
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2040920409
ac_cs_config='$ac_cs_config_escaped'
2041020410
ac_cs_version="\\
20411-
SDL2_mixer config.status 2.8.0
20411+
SDL2_mixer config.status 2.9.0
2041220412
configured by $0, generated by GNU Autoconf 2.71,
2041320413
with options \\"\$ac_cs_config\\"
2041420414

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
33
dnl Set various version strings - taken gratefully from the GTk sources
44
# See release_checklist.md
55
m4_define([MAJOR_VERSION_MACRO], [2])
6-
m4_define([MINOR_VERSION_MACRO], [8])
6+
m4_define([MINOR_VERSION_MACRO], [9])
77
m4_define([MICRO_VERSION_MACRO], [0])
88

99
AC_INIT([SDL2_mixer],

include/SDL_mixer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ extern "C" {
4545
* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL
4646
*/
4747
#define SDL_MIXER_MAJOR_VERSION 2
48-
#define SDL_MIXER_MINOR_VERSION 8
48+
#define SDL_MIXER_MINOR_VERSION 9
4949
#define SDL_MIXER_PATCHLEVEL 0
5050

5151
/**

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,8,0,0
13-
PRODUCTVERSION 2,8,0,0
12+
FILEVERSION 2,9,0,0
13+
PRODUCTVERSION 2,9,0,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, 8, 0, 0\0"
26+
VALUE "FileVersion", "2, 9, 0, 0\0"
2727
VALUE "InternalName", "SDL_mixer\0"
2828
VALUE "LegalCopyright", "Copyright (C) 2025 Sam Lantinga\0"
2929
VALUE "OriginalFilename", "SDL_mixer.dll\0"
3030
VALUE "ProductName", "Simple DirectMedia Layer\0"
31-
VALUE "ProductVersion", "2, 8, 0, 0\0"
31+
VALUE "ProductVersion", "2, 9, 0, 0\0"
3232
END
3333
END
3434
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)