From 19dba7cc849662b5f2027b1277604586bb454ba9 Mon Sep 17 00:00:00 2001 From: Xu Zhen Date: Fri, 28 Jul 2023 09:54:24 +0800 Subject: [PATCH] bump version --- README.md | 2 +- dockbarx/dockbar.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6817368..ab910d4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # DockbarX -### Version 1.0-beta2 +### Version 1.0-beta3 ## About DockbarX The gtk3/python3 version of DockbarX is a lightweight taskbar / panel replacement for Linux which works as a stand-alone dock (called DockX), as a Xfce4 panel applet[^1] or a matepanel applet. DockbarX is a fork of dockbar made by Aleksey Shaferov. DockbarX branch is developed by Matias Särs. diff --git a/dockbarx/dockbar.py b/dockbarx/dockbar.py index 8344859..134f510 100644 --- a/dockbarx/dockbar.py +++ b/dockbarx/dockbar.py @@ -42,7 +42,7 @@ from . import i18n _ = i18n.language.gettext -VERSION = "1.0-beta2" +VERSION = "1.0-beta3" SPECIAL_RES_CLASSES = { diff --git a/setup.py b/setup.py index 64b0642..bc9ae03 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ import sys import stat -VERSION = "1.0-beta2" +VERSION = "1.0-beta3" class build_trans(cmd.Command): description = "Compile .po files into .mo files"