Skip to content

Commit

Permalink
Merge pull request Pycord-Development#868 from BobDotCom/bump-beta
Browse files Browse the repository at this point in the history
Bump version to 2.0.0 beta
  • Loading branch information
BobDotCom authored Jan 27, 2022
2 parents 3c3b8cf + 4f39a97 commit 16661e7
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 35 deletions.
68 changes: 34 additions & 34 deletions discord/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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())
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import re

from setuptools import setup

# Requirements
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 16661e7

Please sign in to comment.