Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Bump the version for 2.0.0 release #1075

Merged
merged 5 commits into from Jul 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES/930.misc
@@ -0,0 +1 @@
Release version 2.0.0.
2 changes: 1 addition & 1 deletion aioredis/__init__.py
Expand Up @@ -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__ = [
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Expand Up @@ -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

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -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",
Expand Down