升级AGC标准发行版patch版本
Project CI / Repository checks (push) Failing after 4m43s
Project CI / Frontend tests (push) Failing after 3m36s
Project CI / Backend tests (push) Successful in 8m28s
Project CI / Native shell tests (push) Failing after 6m43s

将AI游戏创作壳版本升级到0.1.4

同步Tauri、Cargo及版本校验门禁
This commit is contained in:
2026-08-25 10:46:50 +08:00
parent 07afb6d753
commit 23ea6d4906
7 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@genarrative/ai-game-creator-shell",
"private": true,
"version": "0.1.2",
"version": "0.1.4",
"type": "module",
"scripts": {
"dev": "node scripts/start-tauri-dev.mjs",
@@ -1734,12 +1734,12 @@ if (
}
if (
tauriConfig.version !== '0.1.2' ||
packageConfig.version !== '0.1.2' ||
cargoPackageVersion !== '0.1.2'
tauriConfig.version !== '0.1.4' ||
packageConfig.version !== '0.1.4' ||
cargoPackageVersion !== '0.1.4'
) {
throw new Error(
'AI game creator standard release must remain version 0.1.2 while game-chat uses its dedicated version',
'AI game creator standard release must remain version 0.1.4 while game-chat uses its dedicated version',
);
}
+1 -1
View File
@@ -1695,7 +1695,7 @@ dependencies = [
[[package]]
name = "genarrative-ai-game-creator-shell"
version = "0.1.2"
version = "0.1.4"
dependencies = [
"agent-runtime-core",
"axum",
@@ -1,6 +1,6 @@
[package]
name = "genarrative-ai-game-creator-shell"
version = "0.1.2"
version = "0.1.4"
edition = "2021"
publish = false
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Genarrative AI Game Creator",
"version": "0.1.2",
"version": "0.1.4",
"identifier": "world.genarrative.ai-game-creator",
"build": {
"beforeDevCommand": "npm --prefix ../.. run agc:serve",
+1 -1
View File
@@ -174,7 +174,7 @@ export function collectNpmWorkspaceErrors(rootDir) {
);
}
const expectedWorkspaceVersion =
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.2' : '0.1.0';
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.4' : '0.1.0';
if (manifest.version !== expectedWorkspaceVersion) {
errors.push(
`${manifestPath}: workspace version must be ${expectedWorkspaceVersion}`,
+1 -1
View File
@@ -79,7 +79,7 @@ function createValidFixture() {
name: workspaceNames[workspacePath],
private: true,
version:
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.2' : '0.1.0',
workspacePath === 'apps/ai-game-creator-shell' ? '0.1.4' : '0.1.0',
dependencies: localDependencies[workspacePath],
};
writeJson(rootDir, `${workspacePath}/package.json`, manifest);