From 2a235af387798ba0e4a3ee886a8deaa36c8a7af9 Mon Sep 17 00:00:00 2001 From: fdev31 Date: Sat, 2 Nov 2024 21:45:46 +0100 Subject: [PATCH] fix #143 --- pyprland/plugins/pyprland.py | 2 ++ pyprland/version.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pyprland/plugins/pyprland.py b/pyprland/plugins/pyprland.py index 95a2f63..c92c5e2 100644 --- a/pyprland/plugins/pyprland.py +++ b/pyprland/plugins/pyprland.py @@ -33,6 +33,8 @@ async def init(self) -> None: version_str = _tag.split("-", 1)[0] if len(version_str) < len(_tag): auto_increment = True + else: + version_str = version_info["version"] if version_str: try: diff --git a/pyprland/version.py b/pyprland/version.py index 3d5a621..38daed3 100644 --- a/pyprland/version.py +++ b/pyprland/version.py @@ -1,3 +1,3 @@ """Package version.""" -VERSION = "2.4.0-63" +VERSION = "2.4.0-64"