Add support for voice channel parties #33

Closed
wasi-master wants to merge 277 commits from master into 2.0
82 changed files with 2675 additions and 2159 deletions
Showing only changes of commit 462ba84809 - Show all commits

View File

@ -15,7 +15,7 @@ __title__ = 'discord'
__author__ = 'Rapptz'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015-present Rapptz'
__version__ = '1.7.2'
__version__ = '1.7.3'
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
@ -62,6 +62,6 @@ from .sticker import Sticker
VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial')
version_info = VersionInfo(major=1, minor=7, micro=2, releaselevel='final', serial=0)
version_info = VersionInfo(major=1, minor=7, micro=3, releaselevel='final', serial=0)
logging.getLogger(__name__).addHandler(logging.NullHandler())