Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump #166

Merged
merged 1 commit into from
Jan 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bumpver.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version = "2.5.0"
current_version = "2.5.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit = true
tag = true
Expand Down
2 changes: 1 addition & 1 deletion docs/usage/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ print(qalib.__version__)
```

```bash
>>> 2.5.0
>>> 2.5.1
```
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
]
Expand All @@ -20,7 +20,7 @@ dynamic = ["dependencies", "license"]

[tool.poetry]
name = "discord-qalib"
version = "2.5.0"
version = "2.5.1"
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" }]
Expand Down
2 changes: 1 addition & 1 deletion qalib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down