diff options
| author | Rapptz <[email protected]> | 2019-06-25 21:50:28 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-06-25 21:50:28 -0400 |
| commit | 0cf38241d00df3c89c74889a2a73a4c33bb649f9 (patch) | |
| tree | ee3f435a1b449c7d8d3edaa314d0ea05166c572a /discord/__init__.py | |
| parent | Cast activity enumerator to integer instead of accessing value directly (diff) | |
| download | discord.py-0cf38241d00df3c89c74889a2a73a4c33bb649f9.tar.xz discord.py-0cf38241d00df3c89c74889a2a73a4c33bb649f9.zip | |
Version bump to 1.2.3v1.2.3
Diffstat (limited to 'discord/__init__.py')
| -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 09c825e3..3623a528 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.2.2' +__version__ = '1.2.3' 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=2, micro=2, releaselevel='final', serial=0) +version_info = VersionInfo(major=1, minor=2, micro=3, releaselevel='final', serial=0) try: from logging import NullHandler |