Skip to content

Commit

Permalink
v1.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyMorganz committed May 11, 2024
1 parent c43f068 commit 89041c8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [1.29.0] - 2024-05-11

### Added

- 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.
Expand Down
4 changes: 2 additions & 2 deletions editors/code/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion editors/code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"bugs": {
"url": "https://github.com/JohnnyMorganz/luau-lsp/issues"
},
"version": "1.28.1",
"version": "1.29.0",
"engines": {
"vscode": "^1.67.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ int main(int argc, char** argv)
return 1;
};

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

// Global arguments
Expand Down

0 comments on commit 89041c8

Please sign in to comment.