From 3b886b43e53caac782bdaf2ee9601c5b2b564e57 Mon Sep 17 00:00:00 2001 From: pwwang Date: Sat, 20 Jul 2024 23:32:21 -0700 Subject: [PATCH] 0.4.3 --- pyproject.toml | 2 +- simplug.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d0d0826..7940163 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "simplug" -version = "0.4.2" +version = "0.4.3" description = "A simple plugin system for python with async hooks supported" authors = ["pwwang "] license = "MIT" diff --git a/simplug.py b/simplug.py index 192668c..19f369e 100644 --- a/simplug.py +++ b/simplug.py @@ -12,7 +12,7 @@ from diot import OrderedDiot -__version__ = "0.4.2" +__version__ = "0.4.3" SimplugImpl = namedtuple("SimplugImpl", ["impl", "has_self"]) SimplugImpl.__doc__ = """A namedtuple wrapper for hook implementation.