diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-07-06 23:53:28 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-07-06 23:53:28 +0800 |
commit | a3a62037f6063733e0627c16123df72a2ee7bec6 (patch) | |
tree | 2c36a1213c9ee058faf5787e313dc0d142b0ffd3 /changelog.md | |
parent | a19a1f4f077830014dd2d2c378988e7770be2be1 (diff) | |
download | lua-language-server-a3a62037f6063733e0627c16123df72a2ee7bec6.zip |
update changelog
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 2202e288..c7f1556e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,19 @@ # changelog +## 3.5.0 +* `NEW` `LuaDoc`: `---@operator`: + ```lua + ---@class fspath + ---@operator div(string|fspath): fspath + + ---@type fspath + local root + + local fileName = root / 'script' / 'main.lua' -- `fileName` is `fspath` here + ``` +* `NEW` diagnostics: + * `unknown-operator` + ## 3.4.2 `2022-7-6` * `CHG` diagnostic: `type-check` ignores `nil` in `getfield` |