diff --git a/.vscode/launch.json b/.vscode/launch.json index a0866888ec..66efe764f5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -25,6 +25,24 @@ "program": "${workspaceFolder}/cpp/test/build/Debug/bin/unit-tests", "args": [], "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug conformance", + "program": "${workspaceFolder:mcap}/.build/debug/conformance", + "args": [], + "cwd": "${workspaceFolder:mcap}", + "preLaunchTask": "swift: Build Debug conformance" + }, + { + "type": "lldb", + "request": "launch", + "name": "Release conformance", + "program": "${workspaceFolder:mcap}/.build/release/conformance", + "args": [], + "cwd": "${workspaceFolder:mcap}", + "preLaunchTask": "swift: Build Release conformance" } ] } diff --git a/typescript/core/package.json b/typescript/core/package.json index 1bef0b051b..5526b7502c 100644 --- a/typescript/core/package.json +++ b/typescript/core/package.json @@ -1,6 +1,6 @@ { "name": "@mcap/core", - "version": "1.1.0", + "version": "1.2.0", "description": "MCAP file support in TypeScript", "license": "MIT", "repository": {