diff options
| author | Rapptz <[email protected]> | 2019-05-11 15:42:13 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-05-11 15:42:13 -0400 |
| commit | 26a697088257d9c0fe0599f06967c79c3accc7a4 (patch) | |
| tree | 6d9356f220736b5f1763340d110ebb4f908efa2a | |
| parent | Add back signal handling to Client.run (diff) | |
| download | discord.py-26a697088257d9c0fe0599f06967c79c3accc7a4.tar.xz discord.py-26a697088257d9c0fe0599f06967c79c3accc7a4.zip | |
Version bump to v1.1.1v1.1.1
| -rw-r--r-- | discord/__init__.py | 4 | ||||
| -rw-r--r-- | docs/whats_new.rst | 15 |
2 files changed, 17 insertions, 2 deletions
diff --git a/discord/__init__.py b/discord/__init__.py index 5a22fd0a..032a94d8 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -15,7 +15,7 @@ __title__ = 'discord' __author__ = 'Rapptz' __license__ = 'MIT' __copyright__ = 'Copyright 2015-2019 Rapptz' -__version__ = '1.1.0' +__version__ = '1.1.1' from collections import namedtuple import logging @@ -53,7 +53,7 @@ from .raw_models import * VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial') -version_info = VersionInfo(major=1, minor=1, micro=0, releaselevel='final', serial=0) +version_info = VersionInfo(major=1, minor=1, micro=1, releaselevel='final', serial=0) try: from logging import NullHandler diff --git a/docs/whats_new.rst b/docs/whats_new.rst index b5d00ea3..7569e384 100644 --- a/docs/whats_new.rst +++ b/docs/whats_new.rst @@ -8,6 +8,21 @@ Changelog This page keeps a detailed human friendly rendering of what's new and changed in specific versions. +.. _vp1p1p1: + +v1.1.1 +-------- + +Bug Fixes +~~~~~~~~~~~~ + +- Webhooks do not overwrite data on retrying their HTTP requests (:issue:`2140`) + +Miscellaneous +~~~~~~~~~~~~~~ + +- Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup. + .. _vp1p1p0: v1.1.0 |