Skip to content

Commit bcdf874

Browse files
committed
libnl-3.3.0-rc1 release
First release candidate for upcoming libnl 3.3.0 release. Note that from now on, future libnl3 release will bump the second version number, instead of the third. So the next version will be 3.3.0 instead of 3.2.30. This does not imply a break of API/ABI, it is only a change of the versioning scheme. Signed-off-by: Thomas Haller <[email protected]>
1 parent 6bcb90d commit bcdf874

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

configure.ac

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
# copied from glib
1414
m4_define([libnl_major_version], [3])
15-
m4_define([libnl_minor_version], [2])
16-
m4_define([libnl_micro_version], [29])
15+
m4_define([libnl_minor_version], [3])
16+
m4_define([libnl_micro_version], [0])
1717
m4_define([libnl_git_sha], [m4_esyscmd([ ( [ -d ./.git/ ] && [ "$(readlink -f ./.git/)" = "$(readlink -f "$(git rev-parse --git-dir 2>/dev/null)" 2>/dev/null)" ] && git rev-parse --verify -q HEAD 2>/dev/null ) || true ])])
1818

1919

@@ -35,12 +35,12 @@ m4_define([libnl_git_sha], [m4_esyscmd([ ( [ -d ./.git/ ] && [ "$(readlink -f ./
3535
# 3. Programs may need to be changed, recompiled, relinked in order to use
3636
# the new version. Bump current, set revision and age to 0.
3737

38-
m4_define([libnl_lt_current], [224])
38+
m4_define([libnl_lt_current], [225])
3939
m4_define([libnl_lt_revision], [0])
40-
m4_define([libnl_lt_age], [24])
40+
m4_define([libnl_lt_age], [25])
4141

4242
m4_define([libnl_version],
43-
[libnl_major_version.libnl_minor_version.libnl_micro_version])
43+
[libnl_major_version.libnl_minor_version.libnl_micro_version-rc1])
4444

4545
AC_INIT(libnl, [libnl_version], [], [], [http://www.infradead.org/~tgr/libnl/])
4646
AC_CONFIG_HEADERS([lib/defs.h])

doc/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Copyright (c) 2003-2013 Thomas Graf <[email protected]>
1010
#
1111

12-
AC_INIT(libnl-doc, [3.2.29], [http://www.infradead.org/~tgr/libnl/])
12+
AC_INIT(libnl-doc, [3.3.0-rc1], [http://www.infradead.org/~tgr/libnl/])
1313
AC_CONFIG_MACRO_DIR([m4])
1414
AC_CONFIG_AUX_DIR([build-aux])
1515
AM_INIT_AUTOMAKE([foreign])

0 commit comments

Comments
 (0)