diff --git a/pylibbpf/__init__.py b/pylibbpf/__init__.py index e746b99..bb81a39 100644 --- a/pylibbpf/__init__.py +++ b/pylibbpf/__init__.py @@ -43,4 +43,4 @@ __all__ = [ "BpfException", ] -__version__ = "0.0.6" +__version__ = "0.0.7" diff --git a/pyproject.toml b/pyproject.toml index cfad1fb..15689b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta" [project] name = "pylibbpf" -version = "0.0.6" +version = "0.0.7" description = "Python Bindings for Libbpf" authors = [ { name = "r41k0u", email = "pragyanshchaturvedi18@gmail.com" }, diff --git a/tests/test_basic.py b/tests/test_basic.py index 31ac054..755845b 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -2,6 +2,6 @@ import pylibbpf as m def test_main(): - assert m.__version__ == "0.0.6" + assert m.__version__ == "0.0.7" prog = m.BpfObject("tests/execve2.o", structs={}) print(prog)