Skip to content

Commit

Permalink
Merge pull request #57 from khawkins/release_version
Browse files Browse the repository at this point in the history
Rev'ing version to 0.2.0 in advance of publishing
  • Loading branch information
khawkins committed Dec 15, 2023
2 parents 402618e + f40897d commit 58a3fc5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "salesforcedx-vscode-mobile",
"displayName": "%extension.displayName%",
"description": "%extension.description%",
"version": "0.2.0-beta1",
"version": "0.2.0",
"publisher": "salesforce",
"engines": {
"vscode": "^1.77.0",
Expand Down
10 changes: 9 additions & 1 deletion src/test/runTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ import {
import { spawnSync } from 'child_process';
import { CORE_EXTENSION_ID } from '../utils/constants';

// There's a known issue (https://github.com/microsoft/vscode/issues/200895)
// with VSCode 1.85.1 and running tests on Windows. We'll stick with an
// explicit working version for now. TODO: change this back to 'stable' when
// the problem is resolved.
// const VSCODE_VERSION = 'stable';
const VSCODE_TEST_VERSION = '1.84.2';

async function main() {
try {
// The folder containing the Extension Manifest package.json
Expand All @@ -34,7 +41,8 @@ async function main() {
// NB: We'll use the 'stable' version of VSCode for tests, to catch
// potential incompatibilities in newer versions than the minmum we
// support in the `engines` section of our package.
const vscodeExecutablePath = await downloadAndUnzipVSCode('stable');
const vscodeExecutablePath =
await downloadAndUnzipVSCode(VSCODE_TEST_VERSION);
const [cliPath, ...args] =
resolveCliArgsFromVSCodeExecutablePath(vscodeExecutablePath);

Expand Down

0 comments on commit 58a3fc5

Please sign in to comment.