diff --git a/CHANGES.md b/CHANGES.md index b0d13aa..91fef94 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,9 @@ the one you find pypi, but its the one in development. dev ===== + +0.15.2 +===== * Add E2E testing infrastructure using mkosi for running tests in a real systemd environment * Improve type annotations throughout pystemd, modernizing to Python 3.10+ syntax * Add AmbientCapabilities to systemd1 KNOWN_UNIT_SIGNATURES diff --git a/pyproject.toml b/pyproject.toml index 25a4c1c..0f73506 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pystemd" -version = "0.15.1" +version = "0.15.2" readme = "README.md" description="A systemd binding for python" requires-python=">=3.11" diff --git a/pystemd/__version__.py b/pystemd/__version__.py index 868e70a..4613bef 100644 --- a/pystemd/__version__.py +++ b/pystemd/__version__.py @@ -12,6 +12,6 @@ # during development this version is always at least "one up" the # latest release. -__version__ = "0.15.1" +__version__ = "0.15.2" sys.modules[__name__] = __version__ # type: ignore diff --git a/setup.py b/setup.py index 904f83a..45cb754 100644 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ setup( name="pystemd", - version="0.15.1", + version="0.15.2", author="Alvaro Leiva Geisse", author_email="aleivag@gmail.com", packages=["pystemd", "pystemd.systemd1", "pystemd.machine1", "pystemd.DBus"],