Skip to content

Commit

Permalink
Merge pull request #27 from WHForks/bump
Browse files Browse the repository at this point in the history
Bump version to 0.1.0
  • Loading branch information
tgodzik authored Oct 10, 2024
2 parents e3cc843 + bbb82f7 commit 2cafe1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zed_scala"
version = "0.0.4"
version = "0.1.0"
edition = "2021"
publish = false
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion extension.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
id = "scala"
name = "Scala"
description = "Scala support."
version = "0.0.4"
version = "0.1.0"
schema_version = 1
authors = [
"Igal Tabachnik <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ impl zed::Extension for ScalaExtension {
) -> Result<zed::Command> {
let path = worktree
.which("metals")
.ok_or_else(|| "Metals must be installed via coursier. Please install coursier (https://get-coursier.io/), and then run `cs install metals`.".to_string())?;
.ok_or_else(|| "Metals must be installed manually. Recommended way is to install coursier (https://get-coursier.io/), and then run `cs install metals`.".to_string())?;

let arguments = LspSettings::for_worktree("metals", worktree)
.map(|lsp_settings| {
Expand Down

0 comments on commit 2cafe1f

Please sign in to comment.