diff --git a/bumpver.toml b/bumpver.toml index f3cf6a8..e9380c2 100644 --- a/bumpver.toml +++ b/bumpver.toml @@ -1,5 +1,5 @@ [bumpver] -current_version = "2.2.3" +current_version = "2.3.0" version_pattern = "MAJOR.MINOR.PATCH" commit = true tag = true diff --git a/docs/usage/installation.md b/docs/usage/installation.md index f28b77a..57b1be5 100644 --- a/docs/usage/installation.md +++ b/docs/usage/installation.md @@ -15,5 +15,5 @@ print(qalib.__version__) ``` ```bash ->>> 2.2.3 +>>> 2.3.0 ``` diff --git a/pyproject.toml b/pyproject.toml index 5a2c5e9..b746f3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "discord-qalib" -version = "2.2.3" +version = "2.3.0" authors = [ { name = "YousefEZ", email = "syberprojects@gmail.com" }, ] @@ -20,7 +20,7 @@ dynamic = ["dependencies"] [tool.poetry] name = "discord-qalib" -version = "2.2.3" +version = "2.3.0" 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 c6d6a5b..2bffb18 100644 --- a/qalib/__init__.py +++ b/qalib/__init__.py @@ -21,7 +21,7 @@ __author__ = "YousefEZ" __license__ = "MIT" __copyright__ = "Copyright 2022-present YousefEZ" -__version__ = "2.2.3" +__version__ = "2.3.0" T = TypeVar("T") Coro = Coroutine[Any, Any, T] diff --git a/setup.py b/setup.py index cb191d5..3b9c160 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.2.3", + version="2.3.0", description="A library for templating responses on .xml, and .json files for discord.py", packages=find_packages(exclude=("test*",)), license="MIT",