diff options
| author | Rapptz <[email protected]> | 2017-08-16 19:43:02 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-08-16 19:43:02 -0400 |
| commit | 8c14f5301c95499cde9240e23f995fced0a0fbee (patch) | |
| tree | beab2237deaa160340934b83ab16cee855e07e66 /discord | |
| parent | Don't use find_packages here. (diff) | |
| download | discord.py-8c14f5301c95499cde9240e23f995fced0a0fbee.tar.xz discord.py-8c14f5301c95499cde9240e23f995fced0a0fbee.zip | |
Version bump to v0.16.9v0.16.9
Diffstat (limited to 'discord')
| -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 c2e02441..881d631b 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.16.8' +__version__ = '0.16.9' from .client import Client, AppInfo, ChannelPermissions from .user import User @@ -43,7 +43,7 @@ import logging VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial') -version_info = VersionInfo(major=0, minor=16, micro=8, releaselevel='final', serial=0) +version_info = VersionInfo(major=0, minor=16, micro=9, releaselevel='final', serial=0) try: from logging import NullHandler |