Skip to content

Commit

Permalink
bump version to 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AutoPyPi authored May 20, 2023
1 parent 16489e3 commit 742df5e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
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.2.3"
current_version = "2.3.0"
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.2.3
>>> 2.3.0
```
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.2.3"
version = "2.3.0"
authors = [
{ name = "YousefEZ", email = "[email protected]" },
]
Expand All @@ -20,7 +20,7 @@ dynamic = ["dependencies"]

[tool.poetry]
name = "discord-qalib"
version = "2.2.3"
version = "2.3.0"
authors = ["YousefEZ [email protected]", ]
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.2.3"
__version__ = "2.3.0"

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="[email protected]",
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",
Expand Down

0 comments on commit 742df5e

Please sign in to comment.