From 8912cb54d4f92ba8845d3998cf83537b9a6c01e8 Mon Sep 17 00:00:00 2001 From: Celestial Date: Sun, 12 Apr 2026 10:44:51 +0200 Subject: [PATCH] chore(ts-sdk): bump publish version to 0.1.1 --- sdks/typescript/RELEASING.md | 4 ++-- sdks/typescript/native/darwin-arm64/package.json | 2 +- sdks/typescript/native/darwin-x64/package.json | 2 +- sdks/typescript/native/linux-arm64/package.json | 2 +- sdks/typescript/native/linux-x64/package.json | 2 +- sdks/typescript/native/win32-arm64/package.json | 2 +- sdks/typescript/native/win32-x64/package.json | 2 +- sdks/typescript/package.json | 2 +- sdks/typescript/src/app.ts | 2 +- sdks/typescript/src/runtime/runtime-extension-stdio.test.ts | 6 +++--- sdks/typescript/src/runtime/runtime-extension.test.ts | 4 ++-- 11 files changed, 15 insertions(+), 15 deletions(-) diff --git a/sdks/typescript/RELEASING.md b/sdks/typescript/RELEASING.md index c599fe83..71b7d6b3 100644 --- a/sdks/typescript/RELEASING.md +++ b/sdks/typescript/RELEASING.md @@ -21,8 +21,8 @@ Use `ts-sdk-vX.Y.Z` tags for npm releases. Examples: ```sh -git tag ts-sdk-v0.1.0 -git push origin ts-sdk-v0.1.0 +git tag ts-sdk-v0.1.1 +git push origin ts-sdk-v0.1.1 ``` The release workflow rejects tags that do not match `sdks/typescript/package.json`. diff --git a/sdks/typescript/native/darwin-arm64/package.json b/sdks/typescript/native/darwin-arm64/package.json index 3d9b0a03..95a7dabb 100644 --- a/sdks/typescript/native/darwin-arm64/package.json +++ b/sdks/typescript/native/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@lythaeon-sof/sdk-native-darwin-arm64", - "version": "0.1.0", + "version": "0.1.1", "license": "MIT OR Apache-2.0", "description": "Native SOF runtime host for @lythaeon-sof/sdk on macOS arm64", "repository": { diff --git a/sdks/typescript/native/darwin-x64/package.json b/sdks/typescript/native/darwin-x64/package.json index 5594bed3..3c0ac02e 100644 --- a/sdks/typescript/native/darwin-x64/package.json +++ b/sdks/typescript/native/darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@lythaeon-sof/sdk-native-darwin-x64", - "version": "0.1.0", + "version": "0.1.1", "license": "MIT OR Apache-2.0", "description": "Native SOF runtime host for @lythaeon-sof/sdk on macOS x64", "repository": { diff --git a/sdks/typescript/native/linux-arm64/package.json b/sdks/typescript/native/linux-arm64/package.json index 2e3ab064..ac63cd19 100644 --- a/sdks/typescript/native/linux-arm64/package.json +++ b/sdks/typescript/native/linux-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@lythaeon-sof/sdk-native-linux-arm64", - "version": "0.1.0", + "version": "0.1.1", "license": "MIT OR Apache-2.0", "description": "Native SOF runtime host for @lythaeon-sof/sdk on Linux arm64", "repository": { diff --git a/sdks/typescript/native/linux-x64/package.json b/sdks/typescript/native/linux-x64/package.json index 195e28e7..4e6f70a9 100644 --- a/sdks/typescript/native/linux-x64/package.json +++ b/sdks/typescript/native/linux-x64/package.json @@ -1,6 +1,6 @@ { "name": "@lythaeon-sof/sdk-native-linux-x64", - "version": "0.1.0", + "version": "0.1.1", "license": "MIT OR Apache-2.0", "description": "Native SOF runtime host for @lythaeon-sof/sdk on Linux x64", "repository": { diff --git a/sdks/typescript/native/win32-arm64/package.json b/sdks/typescript/native/win32-arm64/package.json index e3f2ca14..e62352af 100644 --- a/sdks/typescript/native/win32-arm64/package.json +++ b/sdks/typescript/native/win32-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@lythaeon-sof/sdk-native-win32-arm64", - "version": "0.1.0", + "version": "0.1.1", "license": "MIT OR Apache-2.0", "description": "Native SOF runtime host for @lythaeon-sof/sdk on Windows arm64", "repository": { diff --git a/sdks/typescript/native/win32-x64/package.json b/sdks/typescript/native/win32-x64/package.json index 72262a43..baaa4c2f 100644 --- a/sdks/typescript/native/win32-x64/package.json +++ b/sdks/typescript/native/win32-x64/package.json @@ -1,6 +1,6 @@ { "name": "@lythaeon-sof/sdk-native-win32-x64", - "version": "0.1.0", + "version": "0.1.1", "license": "MIT OR Apache-2.0", "description": "Native SOF runtime host for @lythaeon-sof/sdk on Windows x64", "repository": { diff --git a/sdks/typescript/package.json b/sdks/typescript/package.json index 8c55d899..cd40684d 100644 --- a/sdks/typescript/package.json +++ b/sdks/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@lythaeon-sof/sdk", - "version": "0.1.0", + "version": "0.1.1", "description": "TypeScript App SDK", "license": "MIT OR Apache-2.0", "sideEffects": false, diff --git a/sdks/typescript/src/app.ts b/sdks/typescript/src/app.ts index 981f22a3..b15e8ef3 100644 --- a/sdks/typescript/src/app.ts +++ b/sdks/typescript/src/app.ts @@ -313,7 +313,7 @@ export type AppRunError = AppError | RuntimeExtensionError; export type ExtensionHandler = PluginHandler; export type ExtensionError = PluginError; export type ExtensionInit = PluginInit; -export const typeScriptSdkVersion = "0.1.0"; +export const typeScriptSdkVersion = "0.1.1"; const require = createRequire(import.meta.url); diff --git a/sdks/typescript/src/runtime/runtime-extension-stdio.test.ts b/sdks/typescript/src/runtime/runtime-extension-stdio.test.ts index ecd41720..c3bb93b8 100644 --- a/sdks/typescript/src/runtime/runtime-extension-stdio.test.ts +++ b/sdks/typescript/src/runtime/runtime-extension-stdio.test.ts @@ -180,7 +180,7 @@ test("runtime extension stdio worker processes framed batch protocol messages", }); const manifest = tryCreateRuntimeExtensionWorkerManifest({ - sdkVersion: "0.1.0", + sdkVersion: "0.1.1", extensionName: "stdio-demo", capabilities: [ExtensionCapability.ObserveObserverIngress], }); @@ -267,7 +267,7 @@ test("runtime extension stdio worker rejects malformed framed protocol messages" const errorOutput = new PassThrough(); const manifest = tryCreateRuntimeExtensionWorkerManifest({ - sdkVersion: "0.1.0", + sdkVersion: "0.1.1", extensionName: "bad-wire-demo", capabilities: [ExtensionCapability.ObserveObserverIngress], }); @@ -332,7 +332,7 @@ test("runtime extension stdio worker hard-blocks stdout writes inside callbacks" }); const manifest = tryCreateRuntimeExtensionWorkerManifest({ - sdkVersion: "0.1.0", + sdkVersion: "0.1.1", extensionName: "stdout-guard-demo", capabilities: [ExtensionCapability.ObserveObserverIngress], }); diff --git a/sdks/typescript/src/runtime/runtime-extension.test.ts b/sdks/typescript/src/runtime/runtime-extension.test.ts index cf470cc0..635d4e0f 100644 --- a/sdks/typescript/src/runtime/runtime-extension.test.ts +++ b/sdks/typescript/src/runtime/runtime-extension.test.ts @@ -53,7 +53,7 @@ test("runtime extension manifest creation validates stable typed metadata", () = assert.equal(isOk(resource), true); if (isOk(resource)) { const manifest = createRuntimeExtensionWorkerManifest({ - sdkVersion: "0.1.0", + sdkVersion: "0.1.1", extensionName: parsedExtensionName.value, capabilities: [ ExtensionCapability.BindUdp, @@ -156,7 +156,7 @@ test("runtime extension worker runtime handles manifest lifecycle and exceptions const runtime = tryCreateRuntimeExtensionWorkerRuntime( defineRuntimeExtension({ manifest: createRuntimeExtensionWorkerManifest({ - sdkVersion: "0.1.0", + sdkVersion: "0.1.1", extensionName: parsedExtensionName.value, capabilities: [ExtensionCapability.ObserveObserverIngress], }),