aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2016-11-03 21:52:21 -0400
committerRapptz <[email protected]>2016-11-03 21:52:21 -0400
commit0e856494ed3606eb41131681e3dca56a30dd058d (patch)
treeffee39903abcc0c6fee4e713505c238e33be495a
parentAdd Client.wait_for_reaction to wait for a reaction from a user. (diff)
downloaddiscord.py-0e856494ed3606eb41131681e3dca56a30dd058d.tar.xz
discord.py-0e856494ed3606eb41131681e3dca56a30dd058d.zip
Version bump to v0.14.0v0.14.0
-rw-r--r--discord/__init__.py4
-rw-r--r--docs/whats_new.rst24
2 files changed, 26 insertions, 2 deletions
diff --git a/discord/__init__.py b/discord/__init__.py
index dc6cbf2c..e70773df 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.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
diff --git a/docs/whats_new.rst b/docs/whats_new.rst
index 42f68c59..c235ef45 100644
--- a/docs/whats_new.rst
+++ b/docs/whats_new.rst
@@ -8,6 +8,30 @@ What's New
This page keeps a detailed human friendly rendering of what's new and changed
in specific versions.
+.. _v0p14p0:
+
+This update adds new API features and a couple of bug fixes.
+
+New Features
+~~~~~~~~~~~~~
+
+- Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`
+- Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`.
+- Add support for reactions.
+ - :meth:`Client.add_reaction` to add a reactions
+ - :meth:`Client.remove_reaction` to remove a reaction.
+ - :meth:`Client.get_reaction_users` to get the users that reacted to a message.
+ - :attr:`Permissions.add_reactions` permission bit support.
+ - Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`.
+ - :attr:`Message.reactions` to get reactions from a message.
+ - :meth:`Client.wait_for_reaction` to wait for a reaction from a user.
+
+Bug Fixes
+~~~~~~~~~~
+
+- Fix bug with Paginator still allowing lines that are too long.
+- Fix the :attr:`Permissions.manage_emojis` bit being incorrect.
+
.. _v0p13p0:
v0.13.0