Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pystemd/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down