From 91fe6a590d6e54a3d0aa9f0311bfd0690ecaa7dd Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Thu, 1 Jun 2023 23:03:35 +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 6c9dd18..0d78559 100644 --- a/apiserver/apiserver/settings.py +++ b/apiserver/apiserver/settings.py @@ -299,7 +299,7 @@ DEFAULT_FROM_EMAIL = 'Protospace Portal ' if DEBUG: logger.info('Debug mode ON') logger.info('Test logging for each thread') -APP_VERSION = 5 # TODO: automate this +APP_VERSION = 6 # TODO: automate this SHELL_PLUS = 'ipython' diff --git a/webclient/src/App.js b/webclient/src/App.js index ee75094..7e5caf4 100644 --- a/webclient/src/App.js +++ b/webclient/src/App.js @@ -32,7 +32,7 @@ import { Garden } from './Garden.js'; import { Footer } from './Footer.js'; import { LCARS1Display, LCARS2Display } from './Display.js'; -const APP_VERSION = 5; // TODO: automate this +const APP_VERSION = 6; // TODO: automate this function App() { const [token, setToken] = useState(localStorage.getItem('token', ''));