Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sdks/typescript/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion sdks/typescript/native/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion sdks/typescript/native/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion sdks/typescript/native/linux-arm64/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion sdks/typescript/native/linux-x64/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion sdks/typescript/native/win32-arm64/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion sdks/typescript/native/win32-x64/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion sdks/typescript/package.json
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
2 changes: 1 addition & 1 deletion sdks/typescript/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
6 changes: 3 additions & 3 deletions sdks/typescript/src/runtime/runtime-extension-stdio.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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],
});
Expand Down Expand Up @@ -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],
});
Expand Down Expand Up @@ -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],
});
Expand Down
4 changes: 2 additions & 2 deletions sdks/typescript/src/runtime/runtime-extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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],
}),
Expand Down
Loading