Skip to content
This repository was archived by the owner on Jun 8, 2023. It is now read-only.

Commit 6a48eaa

Browse files
committed
Bump version for 0.2.1 release
1 parent 7225720 commit 6a48eaa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scala/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Scala Language Server",
44
"description": "A Scala language server based on Ensime",
55
"icon": "images/scala-logo.png",
6-
"version": "0.2.0",
6+
"version": "0.2.1",
77
"repository": {
88
"url": "https://github.com/dragos/dragos-vscode-scala"
99
},

scala/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export async function activate(context: ExtensionContext) {
4949
let logLevelStr = ''
5050
if(logLevel != null) logLevelStr = logLevel.toString()
5151

52-
let coursierArgs = ['launch', '-r', 'https://dl.bintray.com/dhpcs/maven', '-r', 'sonatype:releases', '-J', toolsJar, 'com.github.dragos:ensime-lsp_2.12:0.2.0', '-M', 'org.github.dragos.vscode.Main'];
52+
let coursierArgs = ['launch', '-r', 'https://dl.bintray.com/dhpcs/maven', '-r', 'sonatype:releases', '-J', toolsJar, 'com.github.dragos:ensime-lsp_2.12:0.2.1', '-M', 'org.github.dragos.vscode.Main'];
5353
let javaArgs = proxyArgs.concat(['-Dvscode.workspace=' + workspace.rootPath,'-Dvscode.logLevel=' + logLevel, '-jar', coursierPath]).concat(coursierArgs);
5454
// The debug options for the server
5555
let debugOptions = ['-Xdebug', '-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000,quiet=y'];

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.2.0"
1+
version in ThisBuild := "0.2.1"

0 commit comments

Comments
 (0)