From 4a21bd75e332f06b0a0ba6376a414fdf79d510f1 Mon Sep 17 00:00:00 2001 From: cneicy Date: Wed, 26 Aug 2026 11:10:26 +0800 Subject: [PATCH] fix(workspace): align published package versions --- Assets/Editor/ShrinkSdkWorkspaceValidation.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Assets/Editor/ShrinkSdkWorkspaceValidation.cs b/Assets/Editor/ShrinkSdkWorkspaceValidation.cs index c2da17e..6d40314 100644 --- a/Assets/Editor/ShrinkSdkWorkspaceValidation.cs +++ b/Assets/Editor/ShrinkSdkWorkspaceValidation.cs @@ -16,12 +16,12 @@ namespace ShrinkSDK.WorkspaceValidation private static readonly ExpectedPackage[] ExpectedPackages = { new ExpectedPackage("ShrinkApp.Core", "com.cneicy.shrink-app-core", "0.1.1"), - new ExpectedPackage("ShrinkApp.Starter.Basic", "com.cneicy.shrink-app-starter-basic", "0.1.1"), + new ExpectedPackage("ShrinkApp.Starter.Basic", "com.cneicy.shrink-app-starter-basic", "0.1.2"), new ExpectedPackage("ShrinkCommand", "com.cneicy.shrink-command", "0.2.0"), new ExpectedPackage("ShrinkCommand.Integration.App", "com.cneicy.shrink-command-integration-app", "0.1.0"), new ExpectedPackage("ShrinkCommand.Integration.EventBus", "com.cneicy.shrink-command-integration-eventbus", "0.1.1"), new ExpectedPackage("ShrinkCommand.Integration.Network", "com.cneicy.shrink-command-integration-network", "0.1.0"), - new ExpectedPackage("ShrinkContext.AppAdapter", "com.cneicy.shrink-context-app-adapter", "0.1.1"), + new ExpectedPackage("ShrinkContext.AppAdapter", "com.cneicy.shrink-context-app-adapter", "0.1.2"), new ExpectedPackage("ShrinkContext.Core", "com.cneicy.shrink-context-core", "0.1.0"), new ExpectedPackage("ShrinkContext.EventBusAdapter", "com.cneicy.shrink-context-eventbus-adapter", "0.1.0"), new ExpectedPackage("ShrinkDataSaver", "com.cneicy.shrink-datasaver", "2.2.0"), @@ -29,13 +29,13 @@ namespace ShrinkSDK.WorkspaceValidation new ExpectedPackage("ShrinkDataSaver.Integration.EventBus", "com.cneicy.shrink-datasaver-integration-eventbus", "2.1.0"), new ExpectedPackage("ShrinkEventBus", "com.cneicy.shrink-eventbus", "2.0.0"), new ExpectedPackage("ShrinkEventBus.Entities", "com.cneicy.shrink-eventbus-entities", "0.1.0"), - new ExpectedPackage("ShrinkInstaller", "com.cneicy.shrink-installer", "0.1.4"), + new ExpectedPackage("ShrinkInstaller", "com.cneicy.shrink-installer", "0.1.5"), new ExpectedPackage("ShrinkModFramework", "com.cneicy.shrink-mod-framework", "0.2.1"), new ExpectedPackage("ShrinkNetwork", "com.cneicy.shrink-network", "0.2.0"), new ExpectedPackage("ShrinkNetwork.Integration.App", "com.cneicy.shrink-network-integration-app", "0.1.0"), new ExpectedPackage("ShrinkNetwork.Integration.EventBus", "com.cneicy.shrink-network-integration-eventbus", "0.1.1"), new ExpectedPackage("ShrinkShared.CodeGen", "com.cneicy.shrink-shared-codegen", "0.1.0"), - new ExpectedPackage("ShrinkTutorial", "com.cneicy.shrink-tutorial", "0.1.0") + new ExpectedPackage("ShrinkTutorial", "com.cneicy.shrink-tutorial", "0.1.1") }; public static void Run()