pypi: Release version 0.7.0.

This commit is contained in:
Eeshan Garg 2020-04-20 23:23:58 -02:30
parent d4ded1c5dd
commit 1dac75f979
3 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ import urllib.parse
import logging
from typing import Any, Callable, Dict, Iterable, IO, List, Mapping, Optional, Text, Tuple, Union
__version__ = "0.6.4"
__version__ = "0.7.0"
# Ensure the Python version is supported
assert sys.version_info >= (3, 5)

2
zulip_bots/setup.py Executable file → Normal file
View file

@ -4,7 +4,7 @@ import os
import sys
from typing import Any, Dict, Optional
ZULIP_BOTS_VERSION = "0.6.4"
ZULIP_BOTS_VERSION = "0.7.0"
IS_PYPA_PACKAGE = False

2
zulip_botserver/setup.py Executable file → Normal file
View file

@ -3,7 +3,7 @@
import sys
from typing import Any, Dict, Optional
ZULIP_BOTSERVER_VERSION = "0.6.4"
ZULIP_BOTSERVER_VERSION = "0.7.0"
with open("README.md") as fh:
long_description = fh.read()