Release version 0.8.2.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2022-03-15 17:44:12 -07:00
parent e6dff1b5b6
commit d26416a1e7
3 changed files with 3 additions and 3 deletions

View file

@ -29,7 +29,7 @@ import distro
import requests
from typing_extensions import Literal
__version__ = "0.8.1"
__version__ = "0.8.2"
# Ensure the Python version is supported
assert sys.version_info >= (3, 6)

View file

@ -2,7 +2,7 @@
from setuptools import find_packages, setup
ZULIP_BOTS_VERSION = "0.8.1"
ZULIP_BOTS_VERSION = "0.8.2"
IS_PYPA_PACKAGE = False

View file

@ -2,7 +2,7 @@
from setuptools import find_packages, setup
ZULIP_BOTSERVER_VERSION = "0.8.1"
ZULIP_BOTSERVER_VERSION = "0.8.2"
with open("README.md") as fh:
long_description = fh.read()