diff options
| author | Rapptz <[email protected]> | 2020-08-22 17:19:47 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-08-22 17:19:47 -0400 |
| commit | 38ebef8c16a8e579f6508983a670da7fc0d4e52b (patch) | |
| tree | 0363d1f9328dfb408db4d982ff6c087a1d84666f | |
| parent | Fix bug with Guild.by_category not showing some channels (diff) | |
| download | discord.py-38ebef8c16a8e579f6508983a670da7fc0d4e52b.tar.xz discord.py-38ebef8c16a8e579f6508983a670da7fc0d4e52b.zip | |
Version bump for development purposes
| -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 95a6ed2a..b936cdbe 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -15,7 +15,7 @@ __title__ = 'discord' __author__ = 'Rapptz' __license__ = 'MIT' __copyright__ = 'Copyright 2015-2020 Rapptz' -__version__ = '1.4.1' +__version__ = '1.5.0a' __path__ = __import__('pkgutil').extend_path(__path__, __name__) @@ -61,7 +61,7 @@ from .team import * VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial') -version_info = VersionInfo(major=1, minor=4, micro=1, releaselevel='final', serial=0) +version_info = VersionInfo(major=1, minor=5, micro=0, releaselevel='alpha', serial=0) try: from logging import NullHandler |