diff options
author | Andrii Nakryiko <andrii@kernel.org> | 2024-10-29 19:40:45 +0100 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2024-10-29 21:42:52 +0100 |
commit | 74975e1303a326bba6edb2136e2050aa0a735f1b (patch) | |
tree | e998dc90eb0b7842fe97beefe9eb0a88fb71e6c8 /tools/lib | |
parent | docs/bpf: Add description of .BTF.base section (diff) | |
download | linux-74975e1303a326bba6edb2136e2050aa0a735f1b.tar.xz linux-74975e1303a326bba6edb2136e2050aa0a735f1b.zip |
libbpf: start v1.6 development cycle
With libbpf v1.5.0 release out, start v1.6 dev cycle.
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/r/20241029184045.581537-1-andrii@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/bpf/libbpf.map | 3 | ||||
-rw-r--r-- | tools/lib/bpf/libbpf_version.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/tools/lib/bpf/libbpf.map b/tools/lib/bpf/libbpf.map index f40ccc2946e7..54b6f312cfa8 100644 --- a/tools/lib/bpf/libbpf.map +++ b/tools/lib/bpf/libbpf.map @@ -430,3 +430,6 @@ LIBBPF_1.5.0 { ring__consume_n; ring_buffer__consume_n; } LIBBPF_1.4.0; + +LIBBPF_1.6.0 { +} LIBBPF_1.5.0; diff --git a/tools/lib/bpf/libbpf_version.h b/tools/lib/bpf/libbpf_version.h index d6e5eff967cb..28c58fb17250 100644 --- a/tools/lib/bpf/libbpf_version.h +++ b/tools/lib/bpf/libbpf_version.h @@ -4,6 +4,6 @@ #define __LIBBPF_VERSION_H #define LIBBPF_MAJOR_VERSION 1 -#define LIBBPF_MINOR_VERSION 5 +#define LIBBPF_MINOR_VERSION 6 #endif /* __LIBBPF_VERSION_H */ |