diff --git a/CHANGES/930.misc b/CHANGES/930.misc new file mode 100644 index 000000000..664948e45 --- /dev/null +++ b/CHANGES/930.misc @@ -0,0 +1 @@ +Release version 2.0.0. diff --git a/aioredis/__init__.py b/aioredis/__init__.py index 24a0a1404..063d7201d 100644 --- a/aioredis/__init__.py +++ b/aioredis/__init__.py @@ -31,7 +31,7 @@ def int_or_str(value): return value -__version__ = "2.0.0b1" +__version__ = "2.0.0" VERSION = tuple(map(int_or_str, __version__.split("."))) __all__ = [ diff --git a/docs/index.md b/docs/index.md index 869a10824..fa9aa75ff 100644 --- a/docs/index.md +++ b/docs/index.md @@ -29,7 +29,7 @@ based on asyncio. The easiest way to install aioredis is by using the package on PyPi: - pip install --pre aioredis + pip install aioredis ## Requirements diff --git a/setup.py b/setup.py index 6a2eb8ac7..bb389b241 100644 --- a/setup.py +++ b/setup.py @@ -22,11 +22,13 @@ def read_version(): classifiers = [ "License :: OSI Approved :: MIT License", - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3 :: Only", "Operating System :: POSIX", "Environment :: Web Environment",