Merge pull request #3785 from eed3si9n/wip/vscode-bump

Bump vscode-sbt-scala version to 0.1.0
This commit is contained in:
eugene yokota 2017-11-30 12:37:47 -05:00 committed by GitHub
commit 8db6cd7a9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 24 additions and 2 deletions

View File

@ -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
```

View File

@ -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.

View File

@ -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",