From 3b5c06fdd93658002438dcc31e03d93afb3f5d2c Mon Sep 17 00:00:00 2001 From: hz4th_coder Date: Fri, 14 Aug 2026 13:01:12 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=88=E6=9C=AC=E5=8F=B7=20v3.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.py | 2 +- enterprise.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 9492a87..e61b375 100644 --- a/app.py +++ b/app.py @@ -231,7 +231,7 @@ def require_admin(fn): @app.route('/api/health') def health(): - return jsonify({'ok': True, 'service': 'ai-worker-platform', 'version': 'v3.3.0'}) + return jsonify({'ok': True, 'service': 'ai-worker-platform', 'version': 'v3.3.1'}) # --------------------------------------------------------------------------- diff --git a/enterprise.py b/enterprise.py index ed456cf..e2326da 100644 --- a/enterprise.py +++ b/enterprise.py @@ -304,7 +304,7 @@ def export_all(): 'eval_results', 'templates', 'users', 'audit_logs', 'project_deliverables', 'user_projects', 'user_workers'] out = {'exported_at': time.strftime('%Y-%m-%d %H:%M:%S'), - 'platform': 'ai-worker-platform', 'version': 'v3.3.0'} + 'platform': 'ai-worker-platform', 'version': 'v3.3.1'} for t in tables: try: out[t] = db.q(f'SELECT * FROM {t}')