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

Commit

Permalink
Merge pull request #1075 from aio-libs/release-2.0
Browse files Browse the repository at this point in the history
Bump the version for 2.0.0 release
  • Loading branch information
abrookins committed Jul 30, 2021
2 parents c65e2e7 + eb9bd17 commit 6612ba7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
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

0 comments on commit 6612ba7

Please sign in to comment.