Skip to content

Commit bf1cca7

Browse files
authored
Merge pull request #5323 from dotty-staging/vscode-dotty-0.1.7
Release vscode-dotty 0.1.7
2 parents 94d70d4 + 5c87e91 commit bf1cca7

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

project/Build.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ object Build {
4343
// This should be the latest published releases.
4444
// TODO: Have the vscode extension fetch these numbers from the Internet
4545
// instead of hardcoding them ?
46-
val publishedDottyVersion = "0.11.0-bin-20181017-3253921-NIGHTLY" // Using a nightly for now to get worksheet support
46+
val publishedDottyVersion = "0.11.0-bin-20181031-5a465af-NIGHTLY" // Using a nightly for now to get worksheet support
4747
val publishedSbtDottyVersion = "0.2.5"
4848

4949

@@ -987,7 +987,7 @@ object Build {
987987
settings(commonSettings).
988988
settings(
989989
EclipseKeys.skipProject := true,
990-
version := "0.1.7-snapshot", // Keep in sync with package.json
990+
version := "0.1.8-snapshot", // Keep in sync with package.json
991991
autoScalaLibrary := false,
992992
publishArtifact := false,
993993
includeFilter in unmanagedSources := NothingFilter | "*.ts" | "**.json",

vscode-dotty/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vscode-dotty/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "dotty",
33
"displayName": "Dotty Language Server",
44
"description": "IDE integration for Dotty, the experimental Scala compiler",
5-
"version": "0.1.7-snapshot",
5+
"version": "0.1.8-snapshot",
66
"license": "BSD-3-Clause",
77
"publisher": "lampepfl",
88
"repository": {

vscode-dotty/src/tracer.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,6 @@ export class Tracer {
242242
type: event.type
243243
}))
244244
)
245-
vscode.window.showWarningMessage('An error occured in Dotty LSP remote tracing connection.')
246245
}
247246

248247
socket.onclose = (event) => {
@@ -255,7 +254,6 @@ export class Tracer {
255254
reason: event.reason
256255
}))
257256
)
258-
vscode.window.showWarningMessage('Dotty LSP remote tracing connection was dropped.')
259257
}
260258

261259
return socket

0 commit comments

Comments
 (0)