diff options
author | sumneko <sumneko@hotmail.com> | 2019-05-14 18:19:49 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2019-05-14 18:19:49 +0800 |
commit | fef92d5a49353b49e3b8db567e3accbdfd946e83 (patch) | |
tree | f01af9707c729dcb860efc05540ad57578fe0269 /server/test | |
parent | e75f3981ea9e7a5c11d7f6f8fa28e4c86e966043 (diff) | |
download | lua-language-server-fef92d5a49353b49e3b8db567e3accbdfd946e83.zip |
0.9.3
Diffstat (limited to 'server/test')
-rw-r--r-- | server/test/build_package.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/test/build_package.lua b/server/test/build_package.lua index f1c3e315..94587208 100644 --- a/server/test/build_package.lua +++ b/server/test/build_package.lua @@ -1,6 +1,8 @@ local json = require 'json' local diagDefault = require 'constant.DiagnosticDefaultSeverity' +local VERSION = "0.9.3" + local package = { name = "lua", displayName = "Lua", @@ -149,7 +151,7 @@ for name, level in pairs(diagDefault) do } end -package.version = "0.9.2" +package.version = VERSION io.save(ROOT:parent_path() / 'package.json', json.encode(package)) |