From edd144f3868f6c43cec96cc55eae233c93a69b46 Mon Sep 17 00:00:00 2001 From: John Hurliman Date: Tue, 28 Feb 2023 11:23:57 -0800 Subject: [PATCH] @mcap/core 1.2.0 (#836) --- .vscode/launch.json | 18 ++++++++++++++++++ typescript/core/package.json | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) 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": {