Skip to content

Commit 79fb2c5

Browse files
committed
3.13.8
1 parent 9d8f1b1 commit 79fb2c5

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

changelog.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
## Unreleased
44
<!-- Add all new changes here. They will be moved under a version at release -->
55

6+
## 3.13.8
7+
`2025-3-12`
8+
* `CHG` when analyzing the literal table, only the first 100 items are analyzed at most
9+
* `CHG` when checking type matching for union types, only the first 100 items are checked at most
10+
* `FIX` Update `--help` message.
11+
* `FIX` --check now respects ignoreDir setting
12+
* `FIX` incorrect argument skip pattern for `--check_out_path=`, which incorrectly skips the next argument
13+
614
## 3.13.7
715
`2025-3-10`
816
* `NEW` CLI: added `--help`.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3439,5 +3439,5 @@
34393439
"sponsor": {
34403440
"url": "https://github.com/LuaLS/lua-language-server/issues/484"
34413441
},
3442-
"version": "3.13.7"
3442+
"version": "3.13.8"
34433443
}

package/build.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local json = require 'json-beautify'
22

3-
local VERSION = "3.13.7"
3+
local VERSION = "3.13.8"
44

55
local fsu = require 'fs-utility'
66
local package = json.decode(fsu.loadFile(ROOT / 'package.json'))

0 commit comments

Comments
 (0)