aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2016-11-03 22:28:18 -0400
committerRapptz <[email protected]>2016-11-03 22:28:18 -0400
commitf56dbb0379eabfe99c4fdeca1fbabc0bf5b0f6df (patch)
tree9292c62e1f1cae6d62a16bb53db8647d686d32d3
parentForgot the v0.14.0 heading in the docs. (diff)
downloaddiscord.py-f56dbb0379eabfe99c4fdeca1fbabc0bf5b0f6df.tar.xz
discord.py-f56dbb0379eabfe99c4fdeca1fbabc0bf5b0f6df.zip
Fix Reaction not importing.v0.14.1
Also bump version to v0.14.1
-rw-r--r--discord/__init__.py5
-rw-r--r--docs/whats_new.rst11
2 files changed, 14 insertions, 2 deletions
diff --git a/discord/__init__.py b/discord/__init__.py
index e70773df..3ddcbe72 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 b614b8b6..b47cebc9 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