Skip to content

Commit f7386db

Browse files
committed
3.12.0
1 parent 2c861f3 commit f7386db

File tree

4 files changed

+20
-12
lines changed

4 files changed

+20
-12
lines changed

changelog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
## Unreleased
44
<!-- Add all new changes here. They will be moved under a version at release -->
55

6+
## 3.12.0
7+
`2024-10-30`
8+
* `NEW` Support importing `enum` through class name suffix matching in quick fixes, allowing the import of `enum` from `table.table.enum; return table`.
9+
* `NEW` Support limited multiline annotations
10+
```lua
11+
---@type {
12+
--- x: number,
13+
--- y: number,
14+
--- z: number,
15+
---}
16+
local point --> local point: { x: number, y: number, z: number }
17+
```
18+
* `FIX` A regression related to type narrow and generic param introduced since `v3.10.1`
19+
* `FIX` Parse storagePath to improve reliability of resolving ${addons} placeholder
20+
* `FIX` Reference should also look in tablefield
21+
* `FIX` Determine that the index of `{...}` is an integer when iterating
22+
623
## 3.11.1
724
`2024-10-9`
825
* `FIX` Fixed an issue preventing to set the locale to Japanese

package.json

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3235,15 +3235,6 @@
32353235
}
32363236
],
32373237
"languages": [
3238-
{
3239-
"id": "lua",
3240-
"extensions": [
3241-
".lua"
3242-
],
3243-
"aliases": [
3244-
"Lua"
3245-
]
3246-
},
32473238
{
32483239
"filenames": [
32493240
".luarc.json",
@@ -3415,5 +3406,5 @@
34153406
"sponsor": {
34163407
"url": "https://github.com/LuaLS/lua-language-server/issues/484"
34173408
},
3418-
"version": "3.11.1"
3409+
"version": "3.12.0"
34193410
}

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

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

0 commit comments

Comments
 (0)