From 9225eb948be0155c9c34c3e38addb6f99185e386 Mon Sep 17 00:00:00 2001 From: pwwang Date: Fri, 23 Jun 2023 23:03:20 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=200.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- simplug.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6c5508f..b1ead3f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "simplug" -version = "0.3.0" +version = "0.3.1" description = "A simple plugin system for python with async hooks supported" authors = ["pwwang "] license = "MIT" diff --git a/simplug.py b/simplug.py index 0f5e0c6..95a4c04 100644 --- a/simplug.py +++ b/simplug.py @@ -18,7 +18,7 @@ from diot import OrderedDiot -__version__ = "0.3.0" +__version__ = "0.3.1" SimplugImpl = namedtuple("SimplugImpl", ["impl", "has_self"]) SimplugImpl.__doc__ = """A namedtuple wrapper for hook implementation.