Skip to content

Commit cb47002

Browse files
Bump .so and plugin ABI versions. Closes: #1819
Commit 0b4a5b2 for libaudcore has (intentionally) introduced an ABI break. The .so version for libaud{core/qt} was adjusted accordingly for Audacious 4.6. But since libaud{gui/tag} are linked with libaudcore and plugins may be linked with them, we need to increase their versions too. See also: Pull Request #1693
1 parent 5d2143d commit cb47002

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/libaudcore/plugin.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ struct PluginPreferences;
4747
* the API tables), increment _AUD_PLUGIN_VERSION *and* set
4848
* _AUD_PLUGIN_VERSION_MIN to the same value. */
4949

50-
#define _AUD_PLUGIN_VERSION_MIN 48 /* 3.8-devel */
51-
#define _AUD_PLUGIN_VERSION 48 /* 3.8-devel */
50+
#define _AUD_PLUGIN_VERSION_MIN 49 /* 4.6.1 */
51+
#define _AUD_PLUGIN_VERSION 49 /* 4.6.1 */
5252

5353
/* Default priority. */
5454
#define _AUD_PLUGIN_DEFAULT_PRIO 5

src/libaudgui/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ libaudgui_lib = library('audgui',
5555
include_directories: [src_inc],
5656
dependencies: [gtk_dep, intl_dep],
5757
link_with: [libaudcore_lib],
58-
soversion: '6',
59-
version: '6.0.0',
58+
soversion: '7',
59+
version: '7.0.0',
6060
install: true
6161
)

src/libaudtag/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ libaudtag_lib = library('audtag',
2121
include_directories: src_inc,
2222
dependencies: [glib_dep],
2323
link_with: libaudcore_lib,
24-
version: '3.0.0',
25-
soversion: 3,
24+
version: '4.0.0',
25+
soversion: 4,
2626
install: true
2727
)

0 commit comments

Comments
 (0)