summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2017-03-06 21:28:49 +0100
committerThomas Haller <thaller@redhat.com>2017-03-06 21:41:18 +0100
commitbcdf874adb1f1895342c31eac784b8cca96a5a6b (patch)
tree27f069218d79620f4a854bdb55af49bbe4995327
parent6bcb90da8769167f46ea1c6a4e62af2f1018d17c (diff)
downloadlibnl-bcdf874adb1f1895342c31eac784b8cca96a5a6b.tar.gz
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 <thaller@redhat.com>
-rw-r--r--configure.ac10
-rw-r--r--doc/configure.ac2
2 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 20a4cbc1..68b285e5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,8 +12,8 @@
# copied from glib
m4_define([libnl_major_version], [3])
-m4_define([libnl_minor_version], [2])
-m4_define([libnl_micro_version], [29])
+m4_define([libnl_minor_version], [3])
+m4_define([libnl_micro_version], [0])
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 ])])
@@ -35,12 +35,12 @@ m4_define([libnl_git_sha], [m4_esyscmd([ ( [ -d ./.git/ ] && [ "$(readlink -f ./
# 3. Programs may need to be changed, recompiled, relinked in order to use
# the new version. Bump current, set revision and age to 0.
-m4_define([libnl_lt_current], [224])
+m4_define([libnl_lt_current], [225])
m4_define([libnl_lt_revision], [0])
-m4_define([libnl_lt_age], [24])
+m4_define([libnl_lt_age], [25])
m4_define([libnl_version],
- [libnl_major_version.libnl_minor_version.libnl_micro_version])
+ [libnl_major_version.libnl_minor_version.libnl_micro_version-rc1])
AC_INIT(libnl, [libnl_version], [], [], [http://www.infradead.org/~tgr/libnl/])
AC_CONFIG_HEADERS([lib/defs.h])
diff --git a/doc/configure.ac b/doc/configure.ac
index bb1db80d..bb001739 100644
--- a/doc/configure.ac
+++ b/doc/configure.ac
@@ -9,7 +9,7 @@
# Copyright (c) 2003-2013 Thomas Graf <tgraf@suug.ch>
#
-AC_INIT(libnl-doc, [3.2.29], [http://www.infradead.org/~tgr/libnl/])
+AC_INIT(libnl-doc, [3.3.0-rc1], [http://www.infradead.org/~tgr/libnl/])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign])