Skip to content

Commit ce2abbd

Browse files
committed
version: Bump to version 3.1.0, now that we're in the right repo.
This is the _development_ version that will become 3.2.0 for a stable release! I have no idea if I got all the places where one needs to adjust the version number, I'm new here. :)
1 parent 6de72ac commit ce2abbd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
88

99
# See docs/release_checklist.md
1010
set(MAJOR_VERSION 3)
11-
set(MINOR_VERSION 0)
11+
set(MINOR_VERSION 1)
1212
set(MICRO_VERSION 0)
1313
set(SDL_REQUIRED_VERSION 3.0.0)
1414

include/SDL3_mixer/SDL_mixer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ typedef struct MIX_Group MIX_Group;
208208
*
209209
* \since This macro is available since SDL_mixer 3.0.0.
210210
*/
211-
#define SDL_MIXER_MINOR_VERSION 0
211+
#define SDL_MIXER_MINOR_VERSION 1
212212

213213
/**
214214
* The current micro (or patchlevel) version of the SDL_mixer headers.

src/version.rc

Lines changed: 4 additions & 4 deletions
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 3,0,0,0
13-
PRODUCTVERSION 3,0,0,0
12+
FILEVERSION 3,1,0,0
13+
PRODUCTVERSION 3,1,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", "3, 0, 0, 0\0"
26+
VALUE "FileVersion", "3, 1, 0, 0\0"
2727
VALUE "InternalName", "SDL_mixer\0"
2828
VALUE "LegalCopyright", "Copyright (C) 2025 Sam Lantinga\0"
2929
VALUE "OriginalFilename", "SDL3_mixer.dll\0"
3030
VALUE "ProductName", "Simple DirectMedia Layer\0"
31-
VALUE "ProductVersion", "3, 0, 0, 0\0"
31+
VALUE "ProductVersion", "3, 1, 0, 0\0"
3232
END
3333
END
3434
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)