From a7940c01ba4aff18eb63ea4cabdeca9260534908 Mon Sep 17 00:00:00 2001 From: Alvaro Leiva Date: Thu, 15 Jan 2026 08:42:26 -0800 Subject: [PATCH] Release version 0.15.3 --- CHANGES.md | 4 ++++ pyproject.toml | 2 +- pystemd/__version__.py | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 91fef94..790937d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,10 @@ the one you find pypi, but its the one in development. dev ===== +0.15.3 +===== +* Fix type invariance causing too strict typing + 0.15.2 ===== * Add E2E testing infrastructure using mkosi for running tests in a real systemd environment diff --git a/pyproject.toml b/pyproject.toml index 0f73506..cf2a900 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pystemd" -version = "0.15.2" +version = "0.15.3" readme = "README.md" description="A systemd binding for python" requires-python=">=3.11" diff --git a/pystemd/__version__.py b/pystemd/__version__.py index 4613bef..129a401 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.2" +__version__ = "0.15.3" sys.modules[__name__] = __version__ # type: ignore diff --git a/setup.py b/setup.py index 45cb754..eed81a3 100644 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ setup( name="pystemd", - version="0.15.2", + version="0.15.3", author="Alvaro Leiva Geisse", author_email="aleivag@gmail.com", packages=["pystemd", "pystemd.systemd1", "pystemd.machine1", "pystemd.DBus"],