From 83f8861f3d9c5eddaa4ec34a0727249c49e068d5 Mon Sep 17 00:00:00 2001 From: AutoPyPi Date: Fri, 5 Jan 2024 09:05:33 +0000 Subject: [PATCH] bump version to 2.5.1 --- 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 fcdc882..73e4682 100644 --- a/bumpver.toml +++ b/bumpver.toml @@ -1,5 +1,5 @@ [bumpver] -current_version = "2.5.0" +current_version = "2.5.1" version_pattern = "MAJOR.MINOR.PATCH" commit = true tag = true diff --git a/docs/usage/installation.md b/docs/usage/installation.md index ee0705e..307e37b 100644 --- a/docs/usage/installation.md +++ b/docs/usage/installation.md @@ -15,5 +15,5 @@ print(qalib.__version__) ``` ```bash ->>> 2.5.0 +>>> 2.5.1 ``` diff --git a/pyproject.toml b/pyproject.toml index 7f9bbb1..743332b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "discord-qalib" -version = "2.5.0" +version = "2.5.1" authors = [ { name = "YousefEZ", email = "syberprojects@gmail.com" }, ] @@ -20,7 +20,7 @@ dynamic = ["dependencies", "license"] [tool.poetry] name = "discord-qalib" -version = "2.5.0" +version = "2.5.1" authors = ["YousefEZ ", ] 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 43c1da5..0ad7e70 100644 --- a/qalib/__init__.py +++ b/qalib/__init__.py @@ -21,7 +21,7 @@ __author__ = "YousefEZ" __license__ = "MIT" __copyright__ = "Copyright 2022-present YousefEZ" -__version__ = "2.5.0" +__version__ = "2.5.1" T = TypeVar("T") Coro = Coroutine[Any, Any, T] diff --git a/setup.py b/setup.py index 2517a65..3379ae9 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.5.0", + version="2.5.1", description="A library for templating responses on .xml, and .json files for discord.py", packages=find_packages(exclude=("test*",)), license="MIT",