Skip to content

Commit d3e192e

Browse files
committed
3.6.11
1 parent 505a725 commit d3e192e

File tree

9 files changed

+29
-9
lines changed

9 files changed

+29
-9
lines changed

changelog.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# changelog
22

3+
## 3.6.11
4+
`2023-2-13`
5+
* `CHG` completion: don't show loading process
6+
* `FIX` [#1886]
7+
* `FIX` [#1887]
8+
* `FIX` [#1889]
9+
* `FIX` [#1895]
10+
* `FIX` [#1902]
11+
12+
[#1886]: https://github.com/LuaLS/lua-language-server/issues/1886
13+
[#1887]: https://github.com/LuaLS/lua-language-server/issues/1887
14+
[#1889]: https://github.com/LuaLS/lua-language-server/issues/1889
15+
[#1895]: https://github.com/LuaLS/lua-language-server/issues/1895
16+
[#1902]: https://github.com/LuaLS/lua-language-server/issues/1902
17+
318
## 3.6.10
419
`2023-2-7`
520
* `FIX` [#1869]

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2682,7 +2682,8 @@
26822682
"xpcall",
26832683
"assert",
26842684
"error",
2685-
"type"
2685+
"type",
2686+
"os.exit"
26862687
],
26872688
"type": "string"
26882689
}
@@ -3054,5 +3055,5 @@
30543055
"sponsor": {
30553056
"url": "https://github.com/LuaLS/lua-language-server/issues/484"
30563057
},
3057-
"version": "3.6.10"
3058+
"version": "3.6.11"
30583059
}

package/build.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local json = require 'json-beautify'
22

3-
local VERSION = "3.6.10"
3+
local VERSION = "3.6.11"
44

55
local package = require 'package.package'
66
local fsu = require 'fs-utility'

setting/schema-pt-br.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2857,7 +2857,8 @@
28572857
"xpcall",
28582858
"assert",
28592859
"error",
2860-
"type"
2860+
"type",
2861+
"os.exit"
28612862
],
28622863
"type": "string"
28632864
}

setting/schema-zh-cn.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2857,7 +2857,8 @@
28572857
"xpcall",
28582858
"assert",
28592859
"error",
2860-
"type"
2860+
"type",
2861+
"os.exit"
28612862
],
28622863
"type": "string"
28632864
}

setting/schema-zh-tw.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2857,7 +2857,8 @@
28572857
"xpcall",
28582858
"assert",
28592859
"error",
2860-
"type"
2860+
"type",
2861+
"os.exit"
28612862
],
28622863
"type": "string"
28632864
}

setting/schema.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2857,7 +2857,8 @@
28572857
"xpcall",
28582858
"assert",
28592859
"error",
2860-
"type"
2860+
"type",
2861+
"os.exit"
28612862
],
28622863
"type": "string"
28632864
}

0 commit comments

Comments
 (0)