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

Commit ad410ef

Browse files
committed
Bump version to 0.2.0
1 parent 4d22ac9 commit ad410ef

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pomIncludeRepository := { _ => false }
99

1010
lazy val commonSettings = Seq(
1111
organization := "com.github.dragos",
12-
version := "0.1.7-SNAPSHOT",
12+
version := "0.2.0",
1313
resolvers += "dhpcs at bintray" at "https://dl.bintray.com/dhpcs/maven",
1414
libraryDependencies ++= Seq(
1515
"org.scalatest" %% "scalatest" % "3.0.1" % "test"

scala/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# Change Log
22

3-
## 0.1.x (MM DD, YYYY)
3+
## 0.2.0 (Sept 19, 2017)
4+
5+
- Add Scala 2.12 support (based on Ensime 2.0-M4)
6+
- Customizable log level
7+
8+
## 0.1.6 (June 20, 2017)
9+
10+
- Only start the VSCode extension when a .ensime file exists (#47)
11+
- Added support for scalariformFormat (#44)
12+
13+
## 0.1.4 (April 18, 2017)
414

515
- add proxy settings for Coursier download. Use `"http.proxy": "http://host:port/"` in the VS Code settings file.
616

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.1.7-SNAPSHOT', '-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.0', '-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'];

0 commit comments

Comments
 (0)