Skip to content

Release vscode-dotty 0.1.7 #5323

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ object Build {
// This should be the latest published releases.
// TODO: Have the vscode extension fetch these numbers from the Internet
// instead of hardcoding them ?
val publishedDottyVersion = "0.11.0-bin-20181017-3253921-NIGHTLY" // Using a nightly for now to get worksheet support
val publishedDottyVersion = "0.11.0-bin-20181031-5a465af-NIGHTLY" // Using a nightly for now to get worksheet support
val publishedSbtDottyVersion = "0.2.5"


Expand Down Expand Up @@ -987,7 +987,7 @@ object Build {
settings(commonSettings).
settings(
EclipseKeys.skipProject := true,
version := "0.1.7-snapshot", // Keep in sync with package.json
version := "0.1.8-snapshot", // Keep in sync with package.json
autoScalaLibrary := false,
publishArtifact := false,
includeFilter in unmanagedSources := NothingFilter | "*.ts" | "**.json",
Expand Down
2 changes: 1 addition & 1 deletion vscode-dotty/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vscode-dotty/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "dotty",
"displayName": "Dotty Language Server",
"description": "IDE integration for Dotty, the experimental Scala compiler",
"version": "0.1.7-snapshot",
"version": "0.1.8-snapshot",
"license": "BSD-3-Clause",
"publisher": "lampepfl",
"repository": {
Expand Down
2 changes: 0 additions & 2 deletions vscode-dotty/src/tracer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@ export class Tracer {
type: event.type
}))
)
vscode.window.showWarningMessage('An error occured in Dotty LSP remote tracing connection.')
}

socket.onclose = (event) => {
Expand All @@ -255,7 +254,6 @@ export class Tracer {
reason: event.reason
}))
)
vscode.window.showWarningMessage('Dotty LSP remote tracing connection was dropped.')
}

return socket
Expand Down