From 33c5f2bec3fc299791498c22a5a852e62537bdc8 Mon Sep 17 00:00:00 2001 From: Andrii Nakryiko Date: Tue, 7 Jun 2022 14:56:29 -0700 Subject: [PATCH] libbpf: bump Makefile version to 1.0.0 to match libbpf.map We are now in v1.0 dev cycle. Signed-off-by: Andrii Nakryiko --- src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index 40f4f98..6b0d715 100644 --- a/src/Makefile +++ b/src/Makefile @@ -8,8 +8,8 @@ else msg = @printf ' %-8s %s%s\n' "$(1)" "$(2)" "$(if $(3), $(3))"; endif -LIBBPF_MAJOR_VERSION := 0 -LIBBPF_MINOR_VERSION := 8 +LIBBPF_MAJOR_VERSION := 1 +LIBBPF_MINOR_VERSION := 0 LIBBPF_PATCH_VERSION := 0 LIBBPF_VERSION := $(LIBBPF_MAJOR_VERSION).$(LIBBPF_MINOR_VERSION).$(LIBBPF_PATCH_VERSION) LIBBPF_MAJMIN_VERSION := $(LIBBPF_MAJOR_VERSION).$(LIBBPF_MINOR_VERSION).0