chore: 发布 v0.5.1 版本
- 更新版本号: 0.5.0.dev → 0.5.1 - 更新前端依赖版本 - 更新快速开始文档版本说明
This commit is contained in:
parent
3df0fce4f6
commit
230f69bf16
@ -16,13 +16,13 @@
|
||||
|
||||
```bash
|
||||
# 克隆稳定版本
|
||||
git clone --branch v0.5.0-beta4 --depth 1 https://github.com/xerrors/Yuxi-Know.git
|
||||
git clone --branch v0.5.1 --depth 1 https://github.com/xerrors/Yuxi-Know.git
|
||||
cd Yuxi-Know
|
||||
```
|
||||
|
||||
::: warning 版本说明
|
||||
- `v0.4.4`: 稳定版本
|
||||
- `v0.5.0-beta4`: 由于数据库重构使用 postgres,可能会存在数据库迁移问题,建议新用户使用,迁移指南详见 [迁移指南](https://xerrors.github.io/Yuxi-Know/latest/changelog/migrate_to_v0-5)。
|
||||
- `v0.5.0`: 稳定版本,由于数据库重构使用 postgres,可能会存在数据库迁移问题,建议新用户使用,迁移指南详见 [迁移指南](https://xerrors.github.io/Yuxi-Know/latest/changelog/migrate_to_v0-5)。
|
||||
- `v0.5.1`:
|
||||
- `main`: 最新开发版本(不稳定,新特性可能会导致新 bug)
|
||||
:::
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "yuxi-know"
|
||||
version = "0.5.0.dev"
|
||||
version = "0.5.1"
|
||||
description = "基于大模型的智能知识库与知识图谱智能体开发平台,融合了 RAG 技术与知识图谱技术,基于 LangGraph v1 + Vue.js + FastAPI + LightRAG 架构构建"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12,<3.14"
|
||||
|
||||
@ -7,7 +7,7 @@ from concurrent.futures import ThreadPoolExecutor # noqa: E402
|
||||
|
||||
from src.config import config as config # noqa: E402
|
||||
|
||||
__version__ = "0.5.0.dev"
|
||||
__version__ = "0.5.1"
|
||||
|
||||
if os.getenv("YUXI_SKIP_APP_INIT") != "1":
|
||||
from src.knowledge import graph_base as graph_base # noqa: E402
|
||||
|
||||
@ -50,4 +50,4 @@ actions:
|
||||
|
||||
# 页脚信息
|
||||
footer:
|
||||
copyright: "© 江南语析 2026 v0.5.0"
|
||||
copyright: "© 江南语析 2026 v0.5.1"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "yuxi-know-web",
|
||||
"version": "0.5.0.web",
|
||||
"version": "0.5.1.web",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
@ -13,40 +13,39 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@ant-design/icons-vue": "^7.0.1",
|
||||
"@antv/g6": "^5.0.49",
|
||||
"@antv/g6": "^5.0.51",
|
||||
"@sigma/edge-curve": "^3.1.0",
|
||||
"@sigma/node-border": "^3.0.0",
|
||||
"@vueuse/core": "^13.9.0",
|
||||
"ant-design-vue": "^4.2.6",
|
||||
"d3": "^7.9.0",
|
||||
"dayjs": "^1.11.18",
|
||||
"dayjs": "^1.11.19",
|
||||
"echarts": "^6.0.0",
|
||||
"echarts-gl": "^2.0.9",
|
||||
"graphology": "^0.26.0",
|
||||
"graphology-generators": "^0.11.2",
|
||||
"highlight.js": "^11.11.1",
|
||||
"less": "^4.4.1",
|
||||
"less": "^4.5.1",
|
||||
"lucide-vue-next": "^0.542.0",
|
||||
"marked": "^16.2.1",
|
||||
"marked-highlight": "^2.2.2",
|
||||
"marked": "^16.4.2",
|
||||
"marked-highlight": "^2.2.3",
|
||||
"markmap-lib": "^0.18.12",
|
||||
"markmap-view": "^0.18.12",
|
||||
"md-editor-v3": "^5.8.4",
|
||||
"pinia": "^3.0.3",
|
||||
"md-editor-v3": "^5.8.5",
|
||||
"pinia": "^3.0.4",
|
||||
"pinia-plugin-persistedstate": "^4.7.1",
|
||||
"sigma": "^3.0.2",
|
||||
"vue": "^3.5.21",
|
||||
"vue-router": "^4.5.1"
|
||||
"vue": "^3.5.29",
|
||||
"vue-router": "^4.6.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.39.2",
|
||||
"@vitejs/plugin-vue": "^6.0.1",
|
||||
"@eslint/js": "^9.39.3",
|
||||
"@vitejs/plugin-vue": "^6.0.4",
|
||||
"@vue/eslint-config-prettier": "^10.2.0",
|
||||
"eslint": "^9.34.0",
|
||||
"eslint-plugin-vue": "^10.4.0",
|
||||
"globals": "^17.0.0",
|
||||
"prettier": "^3.6.2",
|
||||
"vite": "^7.1.5"
|
||||
"eslint": "^9.39.3",
|
||||
"eslint-plugin-vue": "^10.8.0",
|
||||
"globals": "^17.4.0",
|
||||
"prettier": "^3.8.1",
|
||||
"vite": "^7.3.1"
|
||||
},
|
||||
"packageManager": "pnpm@10.11.0"
|
||||
}
|
||||
|
||||
2282
web/pnpm-lock.yaml
2282
web/pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user