From e803aa374dbe09c9b5cc5cffcc30fc1c8631c987 Mon Sep 17 00:00:00 2001 From: shy3130 Date: Fri, 31 Jul 2026 20:03:43 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E7=89=88=E6=9C=AC=E5=8F=B7=E5=8D=87?= =?UTF-8?q?=E8=87=B3=200.1.88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 统一升级 4 处版本号至 0.1.88: - VERSION / backend/app/__init__.py / frontend/package.json: 0.1.87 → 0.1.88 - backend/pyproject.toml: 0.1.83 → 0.1.88 (原已滞后 4 个版本, 一并追上) 本版本包含: - feat(search): 拼音首字母搜索 + 创业/科创/北交所徽标 (#151) - fix(security): ext_columns DuckDB SQL 注入修复 (#152, closes #150) --- VERSION | 2 +- backend/app/__init__.py | 2 +- backend/pyproject.toml | 2 +- frontend/package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 22911ab..d663ead 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.1.87 +v0.1.88 diff --git a/backend/app/__init__.py b/backend/app/__init__.py index d2d9864..515bd75 100644 --- a/backend/app/__init__.py +++ b/backend/app/__init__.py @@ -2,7 +2,7 @@ import sys -__version__ = "0.1.87" +__version__ = "0.1.88" # Windows 默认 stdout/stderr 编码为 GBK(cp936),TickFlow SDK 内部输出含 emoji 的 # 指数/标的名称(如 \U0001f193)时会抛 UnicodeEncodeError,导致请求失败。 diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 39b5916..70e3f31 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tickflow-stock-panel-backend" -version = "0.1.83" +version = "0.1.88" description = "A 股选股 + 监控 + 回测面板 — TickFlow 适配" readme = "../README.md" requires-python = ">=3.11" diff --git a/frontend/package.json b/frontend/package.json index 03b117e..358c1c1 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,7 +1,7 @@ { "name": "tickflow-stock-panel-frontend", "private": true, - "version": "0.1.87", + "version": "0.1.88", "type": "module", "scripts": { "dev": "vite",