Skip to content

Commit 89041c8

Browse files
committed
v1.29.0
1 parent c43f068 commit 89041c8

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
88

9+
## [1.29.0] - 2024-05-11
10+
911
### Added
1012

1113
- Bytecode display will now show type info information. Added setting `luau-lsp.bytecode.typeInfoLevel` (default: 1) to configure the [type info level](https://github.com/luau-lang/luau/blob/259e50903855d1b8be79edc40fc275fd04c9c892/Compiler/include/Luau/Compiler.h#L29-L33) shown.

editors/code/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

editors/code/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"bugs": {
1515
"url": "https://github.com/JohnnyMorganz/luau-lsp/issues"
1616
},
17-
"version": "1.28.1",
17+
"version": "1.29.0",
1818
"engines": {
1919
"vscode": "^1.67.0"
2020
},

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ int main(int argc, char** argv)
192192
return 1;
193193
};
194194

195-
argparse::ArgumentParser program("luau-lsp", "1.28.1");
195+
argparse::ArgumentParser program("luau-lsp", "1.29.0");
196196
program.set_assign_chars(":=");
197197

198198
// Global arguments

0 commit comments

Comments
 (0)