diff --git a/HISTORY.rst b/HISTORY.rst index df05343..5c447ae 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ======= +v0.20.0 (2023-11-06) + +* Update redis==5.0.1. +* Update fakeredis==2.20.0. + + v0.19.4 (2023-11-03) * Add common data science functions to ds_utils.py. diff --git a/aioradio/requirements.txt b/aioradio/requirements.txt index aedc1af..2aa7640 100644 --- a/aioradio/requirements.txt +++ b/aioradio/requirements.txt @@ -6,7 +6,7 @@ botocore==1.31.17 cython==3.0.5 ddtrace==1.11.2 dominodatalab==1.2.4 -fakeredis==1.10.1 +fakeredis==2.20.0 faust-cchardet==2.1.19 flask==2.1.2 flask-cors==3.0.10 @@ -29,7 +29,7 @@ pytest==7.4.3 pytest-asyncio==0.21.1 pytest-cov==4.1.0 python-json-logger==2.0.7 -redis==3.5.3 +redis==5.0.1 twine==4.0.2 werkzeug==2.1.2 wheel==0.41.3 diff --git a/setup.py b/setup.py index 490f86a..25f8dc2 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = fileobj.read() setup(name='aioradio', - version='0.19.4', + version='0.20.0', description='Generic asynchronous i/o python utilities for AWS services (SQS, S3, DynamoDB, Secrets Manager), Redis, MSSQL (pyodbc), JIRA and more', long_description=long_description, long_description_content_type="text/markdown", @@ -28,7 +28,7 @@ 'boto3==1.28.17', 'ddtrace>=0.60.1', 'faust-cchardet>=2.1.18', - 'fakeredis>=1.7.1', + 'fakeredis>=2.20.0', 'haversine>=2.8.0', 'httpx>=0.23.0', 'mandrill>=1.0.60', @@ -41,7 +41,7 @@ 'pysmb>=1.2.7', 'python-json-logger>=2.0.2', 'pyspark>=3.4.1', - 'redis==3.5.3' + 'redis==5.0.1' ], include_package_data=True, tests_require=[