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

Commit 6612ba7

Browse files
authored
Merge pull request #1075 from aio-libs/release-2.0
Bump the version for 2.0.0 release
2 parents c65e2e7 + eb9bd17 commit 6612ba7

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGES/930.misc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Release version 2.0.0.

aioredis/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def int_or_str(value):
3131
return value
3232

3333

34-
__version__ = "2.0.0b1"
34+
__version__ = "2.0.0"
3535
VERSION = tuple(map(int_or_str, __version__.split(".")))
3636

3737
__all__ = [

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ based on asyncio.
2929

3030
The easiest way to install aioredis is by using the package on PyPi:
3131

32-
pip install --pre aioredis
32+
pip install aioredis
3333

3434
## Requirements
3535

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@ def read_version():
2222

2323
classifiers = [
2424
"License :: OSI Approved :: MIT License",
25-
"Development Status :: 4 - Beta",
25+
"Development Status :: 5 - Production/Stable",
2626
"Programming Language :: Python",
2727
"Programming Language :: Python :: 3",
2828
"Programming Language :: Python :: 3.6",
2929
"Programming Language :: Python :: 3.7",
30+
"Programming Language :: Python :: 3.8",
31+
"Programming Language :: Python :: 3.9",
3032
"Programming Language :: Python :: 3 :: Only",
3133
"Operating System :: POSIX",
3234
"Environment :: Web Environment",

0 commit comments

Comments
 (0)