2 Commits

Author SHA1 Message Date
6bea1bc8e5 bump version
Signed-off-by: varun-r-mallya <varunrmallya@gmail.com>
2025-09-26 22:54:13 +05:30
64109fac3b bump version
Signed-off-by: varun-r-mallya <varunrmallya@gmail.com>
2025-09-26 22:50:36 +05:30
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "pylibbpf"
version = "0.0.4"
version = "0.0.5"
description = "Python Bindings for Libbpf"
authors = [
{ name = "r41k0u", email = "pragyanshchaturvedi18@gmail.com" },

View File

@ -2,6 +2,6 @@ import pylibbpf as m
def test_main():
assert m.__version__ == "0.0.4"
assert m.__version__ == "0.0.5"
prog = m.BpfProgram("tests/execve2.o")
print(prog)