Skip to content

Commit 4e16baf

Browse files
committed
chore: 升级大版本至 0.8.53,彻底消灭初态脏配置并全覆盖 Rust 层
1 parent 6065b5a commit 4e16baf

10 files changed

Lines changed: 11 additions & 10 deletions

File tree

backend/nit_core/interpreter/rust_binding/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nit_rust_runtime"
3-
version = "0.8.52"
3+
version = "0.8.53"
44
edition = "2021"
55

66
[lib]

backend/nit_core/interpreter/rust_binding/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "nit_rust_runtime"
7-
version = "0.1.0"
7+
version = "0.8.53"
88
description = "NIT Rust Runtime"
99
requires-python = ">=3.8"
1010
dependencies = []

backend/nit_core/nit_terminal_auditor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nit_terminal_auditor"
3-
version = "0.8.52"
3+
version = "0.8.53"
44
edition = "2021"
55

66
[lib]

backend/nit_core/tools/work/CodeSearcher/src/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "CodeSearcher"
3-
version = "0.8.52"
3+
version = "0.8.53"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pero-backend"
3-
version = "0.8.52"
3+
version = "0.8.53"
44
description = "萌动链接:PeroperoChat! 后端服务"
55
requires-python = ">=3.10,<3.11"
66
dependencies = [

backend/vision_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pero_vision_core"
3-
version = "0.8.52"
3+
version = "0.8.53"
44
edition = "2021"
55

66
[lib]

backend/vision_core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "pero_vision_core"
7-
version = "0.8.52"
7+
version = "0.8.53"
88
description = "High-performance computer vision core for Pero using Rust"
99
license = { text = "Apache-2.0" }
1010
authors = [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "peropero-chat",
33
"private": true,
4-
"version": "0.8.52",
4+
"version": "0.8.53",
55
"description": "萌动链接:PeroperoChat!- 一个充满活力的 3D 桌面宠物应用",
66
"author": "YoKONCy",
77
"license": "Apache-2.0",

scripts/sync-version.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const envPath = path.join(__dirname, '../.env')
55
const pkgPath = path.join(__dirname, '../package.json')
66
const pyTomlPath = path.join(__dirname, '../backend/pyproject.toml')
77

8-
let version = '0.8.52' // Default fallback
8+
let version = '0.8.53' // Default fallback
99

1010
// 1. Read version from .env
1111
if (fs.existsSync(envPath)) {
@@ -40,6 +40,7 @@ function updateVersion() {
4040
'../backend/pyproject.toml',
4141
'../backend/vision_core/pyproject.toml',
4242
'../backend/vision_core/Cargo.toml',
43+
'../backend/nit_core/interpreter/rust_binding/pyproject.toml',
4344
'../backend/nit_core/interpreter/rust_binding/Cargo.toml',
4445
'../backend/nit_core/nit_terminal_auditor/Cargo.toml',
4546
'../backend/nit_core/tools/work/CodeSearcher/src/Cargo.toml'

src/composables/dashboard/useDashboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export function useDashboard() {
152152
}
153153

154154
// --- App 版本 / 更新 ---
155-
const appVersion = ref<string>('0.8.0')
155+
const appVersion = ref<string>('...')
156156
const updateStatus = ref<UpdateStatus>({ type: 'idle' })
157157
const isCheckingUpdate = ref<boolean>(false)
158158

0 commit comments

Comments
 (0)