Release version 0.9.0.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2023-11-14 16:16:17 -08:00
parent 2814accb09
commit 28cae1a71c
3 changed files with 3 additions and 3 deletions

View file

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

View file

@ -1,6 +1,6 @@
from setuptools import find_packages, setup from setuptools import find_packages, setup
ZULIP_BOTS_VERSION = "0.8.2" ZULIP_BOTS_VERSION = "0.9.0"
IS_PYPA_PACKAGE = False IS_PYPA_PACKAGE = False

View file

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