Update the language server to 0.7.0

Signed-off-by: Remy Suen <remy.suen@docker.com>
This commit is contained in:
Remy Suen 2025-05-14 08:18:43 -04:00
parent 403b1af5c3
commit f25f67be1a
No known key found for this signature in database
GPG Key ID: A6B90F06DB1D9658
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ async function downloadLanguageServerBinary() {
console.log(platform);
console.log(arch);
const suffix = platform === 'windows' ? '.exe' : '';
const version = '0.6.0';
const version = '0.7.0';
const binaryFile = `docker-language-server-${platform}-${arch}-v${version}${suffix}`;
const targetFile = `docker-language-server-${platform}-${arch}${suffix}`;
const url = `https://github.com/docker/docker-language-server/releases/download/v${version}/${binaryFile}`;