Skip to content

Commit

Permalink
libnl-3.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
thom311 committed Dec 4, 2023
1 parent aa7353f commit bdf8315
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -6,7 +6,7 @@

# copied from glib
m4_define([libnl_major_version], [3])
m4_define([libnl_minor_version], [8])
m4_define([libnl_minor_version], [9])
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 ])])

Expand Down
2 changes: 1 addition & 1 deletion doc/configure.ac
Expand Up @@ -3,7 +3,7 @@
# Copyright (c) 2003-2013 Thomas Graf <tgraf@suug.ch>
#

AC_INIT(libnl-doc, [3.8.0], [http://www.infradead.org/~tgr/libnl/])
AC_INIT(libnl-doc, [3.9.0], [http://www.infradead.org/~tgr/libnl/])
AC_CONFIG_MACRO_DIR([../m4])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign])
Expand Down
6 changes: 6 additions & 0 deletions include/netlink/utils.h
Expand Up @@ -325,6 +325,12 @@ enum {
NL_CAPABILITY_VERSION_3_8_0 = 34,
#define NL_CAPABILITY_VERSION_3_8_0 NL_CAPABILITY_VERSION_3_8_0

/**
* The library version is libnl3 3.9.0 or newer. This capability should never be backported.
*/
NL_CAPABILITY_VERSION_3_9_0 = 35,
#define NL_CAPABILITY_VERSION_3_9_0 NL_CAPABILITY_VERSION_3_9_0

__NL_CAPABILITY_MAX,
NL_CAPABILITY_MAX = (__NL_CAPABILITY_MAX - 1),
#define NL_CAPABILITY_MAX NL_CAPABILITY_MAX
Expand Down
2 changes: 1 addition & 1 deletion lib/utils.c
Expand Up @@ -1284,7 +1284,7 @@ int nl_has_capability (int capability)
_NL_SET (4,
NL_CAPABILITY_VERSION_3_7_0,
NL_CAPABILITY_VERSION_3_8_0,
0,
NL_CAPABILITY_VERSION_3_9_0,
0,
0,
0,
Expand Down

0 comments on commit bdf8315

Please sign in to comment.