diff options
| author | Rapptz <[email protected]> | 2019-04-10 00:59:43 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-04-10 00:59:43 -0400 |
| commit | 37e6b532164dcdef76b24b38bba8003632854315 (patch) | |
| tree | f5dbc5c9e7ecaa935c632d29efc64280ac326301 | |
| parent | [commands] Properly name heading for ExtensionError (diff) | |
| download | discord.py-37e6b532164dcdef76b24b38bba8003632854315.tar.xz discord.py-37e6b532164dcdef76b24b38bba8003632854315.zip | |
Version bump to v1.0.1
| -rw-r--r-- | discord/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/__init__.py b/discord/__init__.py index c17df893..8aaa258b 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.0.0' +__version__ = '1.0.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=0, micro=0, releaselevel='final', serial=0) +version_info = VersionInfo(major=1, minor=0, micro=1, releaselevel='final', serial=0) try: from logging import NullHandler |