diff --git a/discord/__init__.py b/discord/__init__.py index 564c09eced..5fef59137e 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -13,57 +13,57 @@ __author__ = 'Pycord Development' __license__ = 'MIT' __copyright__ = 'Copyright 2015-2021 Rapptz & Copyright 2021-present Pycord Development' -__version__ = '2.0.0-rc.1' +__version__ = '2.0.0-b' __path__ = __import__('pkgutil').extend_path(__path__, __name__) import logging from typing import NamedTuple, Literal -from .client import * -from .appinfo import * -from .user import * -from .emoji import * -from .partial_emoji import * +from . import utils, opus, abc, ui from .activity import * -from .channel import * -from .guild import * -from .flags import * -from .member import * -from .message import * +from .appinfo import * from .asset import * +from .audit_logs import * +from .bot import * +from .channel import * +from .client import * +from .cog import Cog +from .colour import * +from .commands.__init__ import * +from .components import * +from .embeds import * +from .emoji import * +from .enums import * from .errors import * -from .permissions import * -from .role import * from .file import * -from .colour import * +from .flags import * +from .guild import * from .integrations import * +from .interactions import * from .invite import * -from .template import * -from .widget import * -from .object import * -from .reaction import * -from . import utils, opus, abc, ui -from .enums import * -from .embeds import * +from .member import * from .mentions import * -from .shard import * +from .message import * +from .object import * +from .partial_emoji import * +from .permissions import * from .player import * -from .webhook import * -from .voice_client import * -from .audit_logs import * from .raw_models import * -from .team import * -from .sticker import * +from .reaction import * +from .role import * +from .scheduled_events import ScheduledEvent, ScheduledEventLocation +from .shard import * from .stage_instance import * -from .interactions import * -from .components import * +from .sticker import * +from .team import * +from .template import * from .threads import * -from .bot import * -from .commands.__init__ import * -from .cog import Cog +from .user import * +from .voice_client import * +from .webhook import * from .welcome_screen import * -from .scheduled_events import ScheduledEvent, ScheduledEventLocation +from .widget import * class VersionInfo(NamedTuple): @@ -74,6 +74,6 @@ class VersionInfo(NamedTuple): serial: int -version_info: VersionInfo = VersionInfo(major=2, minor=0, micro=0, releaselevel='candidate', serial=1) +version_info: VersionInfo = VersionInfo(major=2, minor=0, micro=0, releaselevel='beta', serial=1) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/setup.py b/setup.py index 7106885a0c..5ebdebe51e 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ import re + from setuptools import setup # Requirements @@ -93,7 +94,7 @@ extras_require=extras_require, python_requires=">=3.8.0", classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Intended Audience :: Developers", "Natural Language :: English",