diff --git a/Dockerfile b/Dockerfile index 1c1a2bd..29bdd09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,7 +54,7 @@ RUN mkdir -p $opt_lsp_dir \ && ln -s $opt_bin_dir/lua-language-server /usr/local/bin/lua-language-server # Install distant binary and make sure its in a path for everyone -ARG distant_version=0.20.0-alpha.13 +ARG distant_version=0.20.0 ARG distant_host=x86_64-unknown-linux-musl RUN curl -L sh.distant.dev | sh -s -- --install-dir "$opt_bin_dir" --distant-version $distant_version --distant-host $distant_host --run-as-admin \ && ln -s "$opt_bin_dir/distant" /usr/local/bin/distant \ diff --git a/lua/distant/init.lua b/lua/distant/init.lua index b83a93a..8a9ab5f 100644 --- a/lua/distant/init.lua +++ b/lua/distant/init.lua @@ -15,7 +15,7 @@ local Version = require('distant-core').Version local DEFAULT = require('distant.default') --- Represents the minimum version of the CLI supported by this plugin. -local MIN_VERSION = Version:parse('0.20.0-alpha.11') +local MIN_VERSION = Version:parse('0.20.0') --- Represents the version of the plugin (not CLI). local PLUGIN_VERSION = Version:parse('0.3.0')