Skip to content

Commit cdafefe

Browse files
committed
3.10.1
1 parent 4a26407 commit cdafefe

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

changelog.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@
33
## Unreleased
44
<!-- Add all new changes here. They will be moved under a version at release -->
55

6+
## 3.10.1
7+
`2024-8-2`
8+
* `FIX` Runtime error
9+
* `FIX` Disable indentation fixing for Non-VSCode
10+
611
## 3.10.0
712
`2024-8-1`
813
* `NEW` Add postfix snippet for `unpack`
914
* `NEW` Add support for lambda style functions, `|paramList| expr` is syntactic sugar for `function(paramList) return expr end`
1015
* `NEW` Added lua regular expression support for `Lua.doc.<scope>Name` [#2753](https://github.com/LuaLS/lua-language-server/pull/2753)
11-
* `NEW` You can now click on "References" in CodeLen to display the reference list
1216
* `NEW` You can now click on "References" in CodeLen to display the reference list(VSCode)
1317
* `NEW` Improved behavior for inserting new lines:
1418
+ When inside an annotation, an annotation tag will be added at the beginning of the line (VSCode).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3382,5 +3382,5 @@
33823382
"sponsor": {
33833383
"url": "https://github.com/LuaLS/lua-language-server/issues/484"
33843384
},
3385-
"version": "3.10.0"
3385+
"version": "3.10.1"
33863386
}

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.10.0"
3+
local VERSION = "3.10.1"
44

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

0 commit comments

Comments
 (0)