From 9cf2643f7728efbea3e8a7fc5898881ceef3f4d4 Mon Sep 17 00:00:00 2001 From: Andrew Brookins Date: Thu, 29 Jul 2021 11:43:54 -0700 Subject: [PATCH 1/5] Bump the version for 2.0.0 release --- CHANGES/930.misc | 1 + aioredis/__init__.py | 2 +- setup.py | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 CHANGES/930.misc 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/setup.py b/setup.py index 6a2eb8ac7..1439cfe62 100644 --- a/setup.py +++ b/setup.py @@ -27,6 +27,8 @@ def read_version(): "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", From 9ad56c8d3d88175a016c8dad076098bfde1cd996 Mon Sep 17 00:00:00 2001 From: Andrew Brookins Date: Thu, 29 Jul 2021 13:52:50 -0700 Subject: [PATCH 2/5] Use the correct dev status classifier --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1439cfe62..bb389b241 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ 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", From cf759f78946005771011fdf5e2fa7a8a48c8048d Mon Sep 17 00:00:00 2001 From: Andrew Brookins Date: Thu, 29 Jul 2021 13:58:39 -0700 Subject: [PATCH 3/5] Remove 3.6 from the list of supported versions --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index bb389b241..baa3913fa 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,6 @@ def read_version(): "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", From ef8c278c484a37a36cb7e268c49b9f869ac7e930 Mon Sep 17 00:00:00 2001 From: Andrew Brookins Date: Thu, 29 Jul 2021 21:53:42 -0700 Subject: [PATCH 4/5] Restore 3.6 classifier --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index baa3913fa..bb389b241 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,7 @@ def read_version(): "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", From eb9bd178c44f7b92e4624d114c4adc3147fc7261 Mon Sep 17 00:00:00 2001 From: Andrew Brookins Date: Thu, 29 Jul 2021 22:32:26 -0700 Subject: [PATCH 5/5] Change the example install command --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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