Browse Source

Fix Reaction not importing.

Also bump version to v0.14.1
pull/381/head v0.14.1
Rapptz 9 years ago
parent
commit
f56dbb0379
  1. 5
      discord/__init__.py
  2. 11
      docs/whats_new.rst

5
discord/__init__.py

@ -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

11
docs/whats_new.rst

@ -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

Loading…
Cancel
Save