From 7339bff2444cc952eedf1728aebd615bef0d4829 Mon Sep 17 00:00:00 2001 From: AutoPyPi Date: Sat, 19 Aug 2023 18:26:17 +0000 Subject: [PATCH] bump version to 2.4.2 --- 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 9a4941f..0e11bd7 100644 --- a/bumpver.toml +++ b/bumpver.toml @@ -1,5 +1,5 @@ [bumpver] -current_version = "2.4.1" +current_version = "2.4.2" version_pattern = "MAJOR.MINOR.PATCH" commit = true tag = true diff --git a/docs/usage/installation.md b/docs/usage/installation.md index 4fa6019..a26f69f 100644 --- a/docs/usage/installation.md +++ b/docs/usage/installation.md @@ -15,5 +15,5 @@ print(qalib.__version__) ``` ```bash ->>> 2.4.1 +>>> 2.4.2 ``` diff --git a/pyproject.toml b/pyproject.toml index fd46aa4..0f1bad3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "discord-qalib" -version = "2.4.1" +version = "2.4.2" authors = [ { name = "YousefEZ", email = "syberprojects@gmail.com" }, ] @@ -20,7 +20,7 @@ dynamic = ["dependencies"] [tool.poetry] name = "discord-qalib" -version = "2.4.1" +version = "2.4.2" 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 593bd78..85aa41c 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.1" +__version__ = "2.4.2" T = TypeVar("T") Coro = Coroutine[Any, Any, T] diff --git a/setup.py b/setup.py index 2085e5d..f3e0c07 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.1", + version="2.4.2", description="A library for templating responses on .xml, and .json files for discord.py", packages=find_packages(exclude=("test*",)), license="MIT",