Fix Reaction not importing.

Also bump version to v0.14.1
This commit is contained in:
Rapptz 2016-11-03 22:28:18 -04:00
parent e68e3f955d
commit f56dbb0379
2 changed files with 14 additions and 2 deletions

View File

@ -15,7 +15,7 @@ __title__ = 'discord'
__author__ = 'Rapptz'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015-2016 Rapptz'
__version__ = '0.14.0'
__version__ = '0.14.1'
from .client import Client, AppInfo, ChannelPermissions
from .user import User
@ -32,6 +32,7 @@ from .role import Role
from .colour import Color, Colour
from .invite import Invite
from .object import Object
from .reaction import Reaction
from . import utils, opus, compat
from .voice_client import VoiceClient
from .enums import ChannelType, ServerRegion, Status, MessageType, VerificationLevel
@ -41,7 +42,7 @@ import logging
VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial')
version_info = VersionInfo(major=0, minor=14, micro=0, releaselevel='final', serial=0)
version_info = VersionInfo(major=0, minor=14, micro=1, releaselevel='final', serial=0)
try:
from logging import NullHandler

View File

@ -8,6 +8,17 @@ What's New
This page keeps a detailed human friendly rendering of what's new and changed
in specific versions.
.. _v0p14p1:
v0.14.1
---------
Bug fixes
~~~~~~~~~~
- Fix bug with `Reaction` not being visible at import.
- This was also breaking the documentation.
.. _v0p14p0:
v0.14.0