mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-06-07 12:18:59 +00:00
Fix Reaction not importing.
Also bump version to v0.14.1
This commit is contained in:
parent
e68e3f955d
commit
f56dbb0379
@ -15,7 +15,7 @@ __title__ = 'discord'
|
|||||||
__author__ = 'Rapptz'
|
__author__ = 'Rapptz'
|
||||||
__license__ = 'MIT'
|
__license__ = 'MIT'
|
||||||
__copyright__ = 'Copyright 2015-2016 Rapptz'
|
__copyright__ = 'Copyright 2015-2016 Rapptz'
|
||||||
__version__ = '0.14.0'
|
__version__ = '0.14.1'
|
||||||
|
|
||||||
from .client import Client, AppInfo, ChannelPermissions
|
from .client import Client, AppInfo, ChannelPermissions
|
||||||
from .user import User
|
from .user import User
|
||||||
@ -32,6 +32,7 @@ from .role import Role
|
|||||||
from .colour import Color, Colour
|
from .colour import Color, Colour
|
||||||
from .invite import Invite
|
from .invite import Invite
|
||||||
from .object import Object
|
from .object import Object
|
||||||
|
from .reaction import Reaction
|
||||||
from . import utils, opus, compat
|
from . import utils, opus, compat
|
||||||
from .voice_client import VoiceClient
|
from .voice_client import VoiceClient
|
||||||
from .enums import ChannelType, ServerRegion, Status, MessageType, VerificationLevel
|
from .enums import ChannelType, ServerRegion, Status, MessageType, VerificationLevel
|
||||||
@ -41,7 +42,7 @@ import logging
|
|||||||
|
|
||||||
VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial')
|
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:
|
try:
|
||||||
from logging import NullHandler
|
from logging import NullHandler
|
||||||
|
@ -8,6 +8,17 @@ What's New
|
|||||||
This page keeps a detailed human friendly rendering of what's new and changed
|
This page keeps a detailed human friendly rendering of what's new and changed
|
||||||
in specific versions.
|
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:
|
.. _v0p14p0:
|
||||||
|
|
||||||
v0.14.0
|
v0.14.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user