diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ad9d2c193..0b6b0d37d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -200,3 +200,22 @@ Building Documentation ====================== The scala-sbt.org site documentation is a separate project [website](https://github.com/sbt/website). Follow [the steps in the README](https://github.com/sbt/website#scala-sbtorg) to generate the documentation. + + +Note for maintainers +==================== + +Publishing VS Code Extensions +----------------------------- + +https://code.visualstudio.com/docs/extensions/publish-extension + +``` +$ sbt +> vscodePlugin/compile +> exit +cd vscode-sbt-scala/client +# update version number in vscode-sbt-scala/client/package.json +$ vsce package +$ vsce publish +``` diff --git a/vscode-sbt-scala/client/README.md b/vscode-sbt-scala/client/README.md index 5c1838a76..01de59573 100644 --- a/vscode-sbt-scala/client/README.md +++ b/vscode-sbt-scala/client/README.md @@ -3,4 +3,7 @@ Scala language support using sbt This is an experimental Scala language support using sbt as the language server. -To try this, use sbt 1.1.0-M1 and above. Saving `*.scala` will trigger `compile` task. +To try this, use sbt 1.1.0-RC1 or above. + +- Saving `*.scala` will trigger `compile` task. +- Jump to definition support for class names. diff --git a/vscode-sbt-scala/client/package.json b/vscode-sbt-scala/client/package.json index 70bacbdd6..c8d8a4472 100644 --- a/vscode-sbt-scala/client/package.json +++ b/vscode-sbt-scala/client/package.json @@ -1,7 +1,7 @@ { "name": "vscode-sbt-scala", "displayName": "Scala (sbt)", - "version": "0.0.2", + "version": "0.1.0", "author": "Lightbend, Inc.", "license": "BSD-3-Clause", "publisher": "lightbend",