From c2e0779adfe657ae8cbc8f4d25e9aea6f8bb0f45 Mon Sep 17 00:00:00 2001 From: AutoPyPi Date: Mon, 28 Aug 2023 20:47:50 +0000 Subject: [PATCH] bump version to 2.4.5 --- bumpver.toml | 2 +- docs/usage/installation.md | 2 +- pyproject.toml | 4 ++-- qalib/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bumpver.toml b/bumpver.toml index baf0060..564cc77 100644 --- a/bumpver.toml +++ b/bumpver.toml @@ -1,5 +1,5 @@ [bumpver] -current_version = "2.4.4" +current_version = "2.4.5" version_pattern = "MAJOR.MINOR.PATCH" commit = true tag = true diff --git a/docs/usage/installation.md b/docs/usage/installation.md index 9340841..ab9065c 100644 --- a/docs/usage/installation.md +++ b/docs/usage/installation.md @@ -15,5 +15,5 @@ print(qalib.__version__) ``` ```bash ->>> 2.4.4 +>>> 2.4.5 ``` diff --git a/pyproject.toml b/pyproject.toml index 2107476..f25af0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "discord-qalib" -version = "2.4.4" +version = "2.4.5" authors = [ { name = "YousefEZ", email = "syberprojects@gmail.com" }, ] @@ -20,7 +20,7 @@ dynamic = ["dependencies"] [tool.poetry] name = "discord-qalib" -version = "2.4.4" +version = "2.4.5" authors = ["YousefEZ syberprojects@gmail.com", ] description = "Discord library built on discord.py to simplify source code by rendering templates of embeds and menus" packages = [{ include = "qalib" }] diff --git a/qalib/__init__.py b/qalib/__init__.py index b016f9b..2f14b91 100644 --- a/qalib/__init__.py +++ b/qalib/__init__.py @@ -21,7 +21,7 @@ __author__ = "YousefEZ" __license__ = "MIT" __copyright__ = "Copyright 2022-present YousefEZ" -__version__ = "2.4.4" +__version__ = "2.4.5" T = TypeVar("T") Coro = Coroutine[Any, Any, T] diff --git a/setup.py b/setup.py index 7894855..43e88a0 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ author="Yousef Zaher", author_email="syberprojects@gmail.com", url="https://github.com/YousefEZ/discord-qalib", - version="2.4.4", + version="2.4.5", description="A library for templating responses on .xml, and .json files for discord.py", packages=find_packages(exclude=("test*",)), license="MIT",