Skip to content

Commit

Permalink
bump package version
Browse files Browse the repository at this point in the history
  • Loading branch information
chrehall68 committed Nov 11, 2024
1 parent c627c43 commit 02ec27d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A language server for Verilog",
"author": "chrehall68",
"license": "MIT",
"version": "1.0.0",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "https://github.com/chrehall68/vls"
Expand Down
14 changes: 5 additions & 9 deletions client/src/extension.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
/* --------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* ------------------------------------------------------------------------------------------ */

import { ExtensionContext, ExtensionMode, workspace } from "vscode";

import { createWriteStream, existsSync, mkdirSync } from "fs";
import { chmod } from "fs/promises";
import * as net from "net";
import { sep } from "path";
import { Readable } from "stream";
import { finished } from "stream/promises";
import {
Expand All @@ -16,7 +12,6 @@ import {
ServerOptions,
StreamInfo,
} from "vscode-languageclient/node";
import { sep } from 'path';

let client: LanguageClient;

Expand All @@ -35,19 +30,20 @@ async function downloadToBin(
}

async function resolveServerExecutable(ctx: ExtensionContext): Promise<string> {
const version = "1.0.1";
const platformDetails = {
win32: {
url: "https://github.com/chrehall68/vls/releases/download/1.0.0/vls-windows-amd64.exe",
url: `https://github.com/chrehall68/vls/releases/download/${version}/vls-windows-amd64.exe`,
filename: "vls.exe",
doChmod: false,
},
darwin: {
url: "https://github.com/chrehall68/vls/releases/download/1.0.0/vls-macos-amd64",
url: `https://github.com/chrehall68/vls/releases/download/${version}/vls-macos-amd64`,
filename: "vls",
doChmod: true,
},
linux: {
url: "https://github.com/chrehall68/vls/releases/download/1.0.0/vls-linux-amd64",
url: `https://github.com/chrehall68/vls/releases/download/${version}/vls-linux-amd64`,
filename: "vls",
doChmod: true,
},
Expand Down

0 comments on commit 02ec27d

Please sign in to comment.