Compare commits

...

1 Commits
v0.5 ... v0.6

Author SHA1 Message Date
a843f77290 Fixed missing import 2023-05-26 13:13:23 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
__name__ = "libbot"
__version__ = "0.5"
__version__ = "0.6"
__license__ = "GPL3"
__author__ = "Profitroll"

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "libbot"
version = "0.5"
version = "0.6"
authors = [{ name = "Profitroll" }]
description = "Universal bot library with functions needed for basic Discord/Telegram bot development."
readme = "README.md"
@@ -36,7 +36,7 @@ Documentation = "https://git.end-play.xyz/profitroll/LibBotUniversal/wiki"
Tracker = "https://git.end-play.xyz/profitroll/LibBotUniversal/issues"
[tool.setuptools]
packages = ["libbot", "libbot.i18n", "libbot.sync"]
packages = ["libbot", "libbot.i18n", "libbot.sync", "libbot.i18n.sync"]
[tool.setuptools_scm]