Skip to content

Commit 1114fa4

Browse files
author
Alberto Iannaccone
committed
update ls to 0.6.0and clangd to 13.0.0
1 parent 51da3c0 commit 1114fa4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: arduino-ide-extension/scripts/download-ls.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// - https://downloads.arduino.cc/arduino-language-server/clangd/clangd_${VERSION}_${SUFFIX}
55

66
(() => {
7-
const DEFAULT_ALS_VERSION = '0.5.0';
8-
const DEFAULT_CLANGD_VERSION = 'snapshot_20210124';
7+
const DEFAULT_ALS_VERSION = '0.6.0';
8+
const DEFAULT_CLANGD_VERSION = '13.0.0';
99

1010
const path = require('path');
1111
const shell = require('shelljs');
@@ -20,7 +20,7 @@
2020
.option('clangd-version', {
2121
alias: 'cv',
2222
default: DEFAULT_CLANGD_VERSION,
23-
choices: ['snapshot_20210124'],
23+
choices: [DEFAULT_CLANGD_VERSION, 'snapshot_20210124'],
2424
describe: `The version of 'clangd' to download. Defaults to ${DEFAULT_CLANGD_VERSION}.`,
2525
})
2626
.option('force-download', {

0 commit comments

Comments
 (0)