Skip to content

Commit

Permalink
Merge pull request #140 from tgodzik/update-to-0.7.2
Browse files Browse the repository at this point in the history
Update default Metals version to 0.7.2
  • Loading branch information
tgodzik authored Sep 2, 2019
2 parents dfde33c + 852a65f commit 2621c1d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"properties": {
"metals.serverVersion": {
"type": "string",
"default": "0.7.0",
"default": "0.7.2",
"markdownDescription": "The version of the Metals server artifact. Requires reloading the window.\n\n**Change only if you know what you're doing**"
},
"metals.serverProperties": {
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ or 11 installation.
on Ubuntu+Windows.

**Scala 2.13, 2.12 and 2.11**. Metals supports these Scala versions 2.13.0,
2.12.8, 2.12.7 and 2.11.12. Note that 2.11.x support is deprecated and it will
be removed in future releases. It's recommended to upgrade to Scala 2.12 or
Scala 2.13
2.12.9, 2.12.8, 2.12.7 and 2.11.12. Note that 2.11.x support is deprecated and
it will be removed in future releases. It's recommended to upgrade to Scala 2.12
or Scala 2.13

## Installation

Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ function launchMetals(

let channelOpen = false;
const clientCommands: {
[k in keyof typeof ClientCommands]: (...args: unknown[]) => unknown
[k in keyof typeof ClientCommands]: (...args: unknown[]) => unknown;
} = {
focusDiagnostics: () =>
commands.executeCommand("workbench.action.problems.focus"),
Expand Down

0 comments on commit 2621c1d

Please sign in to comment.