From 40d7e037586f73b6425eb1a140a3d479b8b16759 Mon Sep 17 00:00:00 2001 From: Doof Date: Thu, 20 Jun 2024 14:22:47 +0000 Subject: [PATCH 1/2] Release 0.96.5 --- RELEASE.rst | 6 ++++++ main/settings.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/RELEASE.rst b/RELEASE.rst index 6d3eaab19f..f3c8d48350 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,6 +1,12 @@ Release Notes ============= +Version 0.96.5 +-------------- + +- Change the cache from memcache to redis in the task as well as it is in the util function itself (#2263) +- Set time limit for task process_google_sheet_requests (#2261) + Version 0.96.4 (Released June 18, 2024) -------------- diff --git a/main/settings.py b/main/settings.py index 67ac7f9287..b814da1da4 100644 --- a/main/settings.py +++ b/main/settings.py @@ -29,7 +29,7 @@ from main.celery_utils import OffsettingSchedule from main.sentry import init_sentry -VERSION = "0.96.4" +VERSION = "0.96.5" log = logging.getLogger() From 7c2eb48b9c189b3eebb617933e190fb68b5edda4 Mon Sep 17 00:00:00 2001 From: Doof Date: Thu, 20 Jun 2024 17:52:46 +0000 Subject: [PATCH 2/2] Release date for 0.96.5 --- RELEASE.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE.rst b/RELEASE.rst index f3c8d48350..6be5feaa14 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,7 +1,7 @@ Release Notes ============= -Version 0.96.5 +Version 0.96.5 (Released June 20, 2024) -------------- - Change the cache from memcache to redis in the task as well as it is in the util function itself (#2263)