Skip to content

Commit

Permalink
lib: version bump to v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronhnsy committed Aug 19, 2022
1 parent 265ffc4 commit 2abefd2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 23 deletions.
26 changes: 11 additions & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "slate.py"
version = "0.4.0"
version = "0.4.1"
description = "A discord.py compatible wrapper for lavalink-like applications."
license = "MIT"
authors = ["Axel <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/Axelware/slate"
repository = "https://github.com/Axelware/slate"
homepage = "https://github.com/Axelware/slate.py"
repository = "https://github.com/Axelware/slate.py"
documentation = "https://slate-py.readthedocs.io/en/latest/"
keywords = ["obsidian", "lavalink", "api", "wrapper", "async"]
include = ["CHANGELOG.md", "LICENSE"]
Expand Down Expand Up @@ -41,7 +41,7 @@ python = "^3.10.0"
aiohttp = "^3.8.0"
typing_extensions = "^4.3.0"
spoti-py = "^0.1.0"
discord-py = { git = "https://github.com/Rapptz/discord.py", branch = "master" }
discord-py = "^2.0.0"


[tool.poetry.group.docs]
Expand All @@ -63,7 +63,7 @@ jishaku = "*"


[tool.poetry.urls]
"Issue Tracker" = "https://github.com/Axelware/slate/issues"
"Issue Tracker" = "https://github.com/Axelware/slate.py/issues"
"Discord" = "https://discord.com/invite/w9f6NkQbde"


Expand Down
6 changes: 3 additions & 3 deletions slate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ class VersionInfo(NamedTuple):
serial: int


version_info: Final[VersionInfo] = VersionInfo(major=0, minor=4, micro=0, releaselevel="final", serial=0)
version_info: Final[VersionInfo] = VersionInfo(major=0, minor=4, micro=1, releaselevel="final", serial=0)

__title__: Final[str] = "slate"
__author__: Final[str] = "Axelancerr"
__copyright__: Final[str] = "Copyright 2020-present Axelancerr"
__license__: Final[str] = "MIT"
__version__: Final[str] = "0.4.0"
__version__: Final[str] = "0.4.1"
__maintainer__: Final[str] = "Aaron Hennessey"
__source__: Final[str] = "https://github.com/Axelware/slate"
__source__: Final[str] = "https://github.com/Axelware/slate.py"

logging.getLogger("slate")

0 comments on commit 2abefd2

Please sign in to comment.