Skip to content

Commit ce5979b

Browse files
committed
chore(release): v1.3.0
1 parent c4a2d9b commit ce5979b

6 files changed

Lines changed: 9 additions & 8 deletions

File tree

desktop/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "wechat-data-analysis-desktop",
33
"private": true,
4-
"version": "0.2.1",
4+
"version": "1.3.0",
55
"main": "src/main.cjs",
66
"scripts": {
77
"dev": "concurrently -k -s first \"cd ..\\\\frontend && npm run dev\" \"cross-env ELECTRON_START_URL=http://localhost:3000 electron .\"",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "wechat-decrypt-tool"
3-
version = "0.2.1"
3+
version = "1.3.0"
44
description = "Modern WeChat database decryption tool with React frontend"
55
readme = "README.md"
66
requires-python = ">=3.11"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""微信数据库解密工具
22
"""
33

4-
__version__ = "0.1.0"
5-
__author__ = "WeChat Decrypt Tool"
4+
__version__ = "1.3.0"
5+
__author__ = "WeChat Decrypt Tool"

src/wechat_decrypt_tool/api.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
from starlette.responses import FileResponse
1010
from starlette.staticfiles import StaticFiles
1111

12+
from . import __version__ as APP_VERSION
1213
from .logging_config import setup_logging, get_logger
1314
from .path_fix import PathFixRoute
1415
from .chat_realtime_autosync import CHAT_REALTIME_AUTOSYNC
@@ -33,7 +34,7 @@
3334
app = FastAPI(
3435
title="微信数据库解密工具",
3536
description="现代化的微信数据库解密工具,支持微信信息检测和数据库解密功能",
36-
version="0.1.0",
37+
version=APP_VERSION,
3738
)
3839

3940
# 设置自定义路由类

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)