Version bump to v0.14.0

This commit is contained in:
Rapptz
2016-11-03 21:52:21 -04:00
parent 0e8a92cbac
commit 0e856494ed
2 changed files with 26 additions and 2 deletions

View File

@ -15,7 +15,7 @@ __title__ = 'discord'
__author__ = 'Rapptz'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015-2016 Rapptz'
__version__ = '0.13.0'
__version__ = '0.14.0'
from .client import Client, AppInfo, ChannelPermissions
from .user import User
@ -41,7 +41,7 @@ import logging
VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial')
version_info = VersionInfo(major=0, minor=13, micro=0, releaselevel='final', serial=0)
version_info = VersionInfo(major=0, minor=14, micro=0, releaselevel='final', serial=0)
try:
from logging import NullHandler