diff --git a/discord/__init__.py b/discord/__init__.py index e70773df1..3ddcbe72a 100644 --- a/discord/__init__.py +++ b/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 diff --git a/docs/whats_new.rst b/docs/whats_new.rst index b614b8b67..b47cebc9c 100644 --- a/docs/whats_new.rst +++ b/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