diff --git a/botbase/__init__.py b/botbase/__init__.py index aaba266..e63012d 100644 --- a/botbase/__init__.py +++ b/botbase/__init__.py @@ -17,7 +17,7 @@ from .checks import * -__version__ = "1.13.2" +__version__ = "1.13.3" getLogger(__name__).addHandler(NullHandler()) diff --git a/poetry.lock b/poetry.lock index 33c7439..9d9b9eb 100644 --- a/poetry.lock +++ b/poetry.lock @@ -250,6 +250,17 @@ docs = ["sphinx (==4.0.2)", "sphinxcontrib_trio (==1.1.2)", "sphinxcontrib-websu speed = ["orjson (>=3.5.4)", "aiodns (>=1.1)", "brotli", "cchardet"] voice = ["PyNaCl (>=1.3.0,<1.5)"] +[[package]] +name = "nextcord-ext-menus" +version = "1.5.2" +description = "An extension module to make reaction based menus with nextcord" +category = "main" +optional = false +python-versions = ">=3.8.0" + +[package.extras] +docs = ["sphinx", "sphinxcontrib-trio", "sphinx-book-theme"] + [[package]] name = "pathspec" version = "0.9.0" @@ -321,7 +332,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest- [metadata] lock-version = "1.1" python-versions = "^3.8" -content-hash = "75833c6ce502033307e9eb5c643469c3e85987792c07775cabefc5a3d3e72c58" +content-hash = "a0aeb61156f7cafd395a30a17b99efbcaa26fd16c102bab4fe56ea08f89a6e4a" [metadata.files] aiohttp = [ @@ -635,6 +646,10 @@ mypy-extensions = [ nextcord = [ {file = "nextcord-2.0.0a10.tar.gz", hash = "sha256:5126ac396748df07df7c32c2d4dadf060d29f794c35762609228e19b85a58cdf"}, ] +nextcord-ext-menus = [ + {file = "nextcord-ext-menus-1.5.2.tar.gz", hash = "sha256:92e0208fcd6249119b97fd67bcda61337e32885292d42bc862d5d767bfee150f"}, + {file = "nextcord_ext_menus-1.5.2-py3-none-any.whl", hash = "sha256:8843fc7a056a6325d100f333b28aa44b32f6fa94c4efaabb5959897432b0d3df"}, +] pathspec = [ {file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"}, {file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"}, diff --git a/pyproject.toml b/pyproject.toml index 27b60f9..3e4f86d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ooliver-botbase" -version = "1.13.2" +version = "1.13.3" description = "A personal nextcord bot base package for bots." authors = ["ooliver1 "] license = "MIT" @@ -22,6 +22,7 @@ python = "^3.8" asyncpg = ">=0.25.0<0.26.0" nextcord = ">=2.0.0-alpha.10<3.0.0" jishaku = "^2.4.0" +nextcord-ext-menus = "^1.5.2" [tool.poetry.dev-dependencies] black = "^22.3.0"