From bbb82f7c8fa1a66cedbcd27959dc6c181b07be8f Mon Sep 17 00:00:00 2001 From: WeetHet Date: Thu, 10 Oct 2024 14:51:52 +0300 Subject: [PATCH] Bump version to 0.1.0 --- Cargo.toml | 2 +- extension.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ec0abe6..deb2cd2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zed_scala" -version = "0.0.4" +version = "0.1.0" edition = "2021" publish = false license = "Apache-2.0" diff --git a/extension.toml b/extension.toml index 4192772..7e3be77 100644 --- a/extension.toml +++ b/extension.toml @@ -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 ", diff --git a/src/lib.rs b/src/lib.rs index 073d5d4..81e7ac0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,7 +20,7 @@ impl zed::Extension for ScalaExtension { ) -> Result { 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| {