From 0406be22b839714734b84a6dfde1e5448584aa5a Mon Sep 17 00:00:00 2001 From: Guy Van Sanden Date: Tue, 7 Mar 2023 14:50:04 +0100 Subject: [PATCH] Bump version --- Gruntfile.js | 2 +- src/app.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index ff60108..f6e760d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -14,7 +14,7 @@ module.exports = function(grunt) { }, python: { options: { - prefix: '__version__\\s*=\\s*\"' + prefix: '__VERSION__\\s*=\\s*\'' }, src: [ 'src/*.py' ], } diff --git a/src/app.py b/src/app.py index 08bb6a4..451484a 100644 --- a/src/app.py +++ b/src/app.py @@ -11,7 +11,7 @@ import psycopg2 import psycopg2.extras from datetime import datetime -__VERSION__ = '0.7' +__VERSION__ = '1.0.0' app = Flask('app') print("Pleroma2nip05 v%s" % (__VERSION__))