diff --git a/flake.nix b/flake.nix index 1c28250..b512ad8 100644 --- a/flake.nix +++ b/flake.nix @@ -23,7 +23,7 @@ "aarch64-windows" ] (system: let - version = "0.2.0"; # CI:CD-VERSION + version = "0.2.1"; # CI:CD-VERSION pkgs = import nixpkgs { inherit system; overlays = [ diff --git a/server/root-handler/common.go b/server/root-handler/common.go index 5195aed..a6fea7a 100644 --- a/server/root-handler/common.go +++ b/server/root-handler/common.go @@ -2,4 +2,4 @@ package roothandler // The comment below at the end of the line is required for the CI:CD to work. // Do not remove it -var Version = "0.2.0" // CI:CD-VERSION +var Version = "0.2.1" // CI:CD-VERSION diff --git a/vs-code-extension/README.md b/vs-code-extension/README.md index cd3bfb3..702ff3d 100644 --- a/vs-code-extension/README.md +++ b/vs-code-extension/README.md @@ -6,16 +6,10 @@ and definition requests. Install this extension and load your config files in VS Code to get started. -If `config-lsp` is unable to detect the language of your config file, you can manually -specify it by adding a line in the form of: +_config-lsp_ adds the new languages directly to VS Code, so you can use the built-in language selector +at the bottom right of the window to switch between different config files. -```plaintext -#?lsp.language= - -# For example - -#?lsp.language=sshconfig -#?lsp.language=fstab -#?lsp.language=aliases -``` +**Please note that this extension is still in beta. There are still bugs and missing features.** +I'm working on this as a hobby project in my free time, so I can't provide you with a timeline +as to when a stable version will be released. diff --git a/vs-code-extension/package.json b/vs-code-extension/package.json index 0651e0d..1cf4393 100644 --- a/vs-code-extension/package.json +++ b/vs-code-extension/package.json @@ -2,7 +2,7 @@ "name": "config-lsp", "description": "Language Features (completions, diagnostics, etc.) for your config files: gitconfig, fstab, aliases, hosts, wireguard, ssh_config, sshd_config, and more to come!", "author": "Myzel394", - "version": "0.2.0", + "version": "0.2.1", "repository": { "type": "git", "url": "https://github.com/Myzel394/config-lsp"