From d5127457678a3c22a6c50a5062b6212b8951bec1 Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Mon, 13 Jun 2022 10:37:28 -0600 Subject: [PATCH] Bump version to 0.7.4 --- app/__init__.py | 2 +- charts/whoogle/Chart.yaml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/__init__.py b/app/__init__.py index 360df7b..a69fb8a 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -43,7 +43,7 @@ if os.getenv('HTTPS_ONLY'): app.config['SESSION_COOKIE_NAME'] = '__Secure-session' app.config['SESSION_COOKIE_SECURE'] = True -app.config['VERSION_NUMBER'] = '0.7.3' +app.config['VERSION_NUMBER'] = '0.7.4' app.config['APP_ROOT'] = os.getenv( 'APP_ROOT', os.path.dirname(os.path.abspath(__file__))) diff --git a/charts/whoogle/Chart.yaml b/charts/whoogle/Chart.yaml index 5d8bb3d..51512dd 100644 --- a/charts/whoogle/Chart.yaml +++ b/charts/whoogle/Chart.yaml @@ -3,7 +3,7 @@ name: whoogle description: A self hosted search engine on Kubernetes type: application version: 0.1.0 -appVersion: 0.7.3 +appVersion: 0.7.4 icon: https://github.com/benbusby/whoogle-search/raw/main/app/static/img/favicon/favicon-96x96.png diff --git a/setup.py b/setup.py index d43478d..5406d7d 100644 --- a/setup.py +++ b/setup.py @@ -5,4 +5,4 @@ optional_dev_tag = '' if os.getenv('DEV_BUILD'): optional_dev_tag = '.dev' + os.getenv('DEV_BUILD') -setuptools.setup(version='0.7.3' + optional_dev_tag) +setuptools.setup(version='0.7.4' + optional_dev_tag)