From 82f32717267dd2006b8ecfa5c4d3c56c6171576c Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Sat, 5 Feb 2022 21:17:43 +0000 Subject: [PATCH] Increment app version --- apiserver/apiserver/settings.py | 2 +- webclient/src/App.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apiserver/apiserver/settings.py b/apiserver/apiserver/settings.py index b44399c..48ac9d2 100644 --- a/apiserver/apiserver/settings.py +++ b/apiserver/apiserver/settings.py @@ -282,7 +282,7 @@ DEFAULT_FROM_EMAIL = 'Protospace Portal ' if DEBUG: logger.info('Debug mode ON') logger.info('Test logging for each thread') -APP_VERSION = 2 # TODO: automate this +APP_VERSION = 3 # TODO: automate this #import logging_tree #logging_tree.printout() diff --git a/webclient/src/App.js b/webclient/src/App.js index 87d38b3..cf1fe86 100644 --- a/webclient/src/App.js +++ b/webclient/src/App.js @@ -27,7 +27,7 @@ import { PasswordReset, ConfirmReset } from './PasswordReset.js'; import { NotFound, PleaseLogin } from './Misc.js'; import { Footer } from './Footer.js'; -const APP_VERSION = 2; // TODO: automate this +const APP_VERSION = 3; // TODO: automate this function App() { const [token, setToken] = useState(localStorage.getItem('token', ''));