Skip to content

Commit

Permalink
v1.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyMorganz committed Mar 3, 2024
1 parent 0c3d28f commit d534808
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion 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.28.0] - 2024-03-03

### Changed

- Sync to upstream Luau 0.615
Expand All @@ -17,7 +19,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

- Autocompletion of variables that hold a class type will now correctly have a kind of "variable" rather than "class"
- Introduced a fix for orphaned `rojo` processes after VSCode has closed
- `FindFirstAncestor` method now correctly finds the project root in non-DataModel projects
- `FindFirstAncestor` method now correctly finds the project root in non-DataModel projects
- Fixed bad handling of unicode in filesystem paths causing crashes on server startup
- Gracefully handle filesystem errors when visiting directories for indexing / workspace diagnostics

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.27.1",
"version": "1.28.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.27.1");
argparse::ArgumentParser program("luau-lsp", "1.28.0");
program.set_assign_chars(":=");

// Global arguments
Expand Down

0 comments on commit d534808

Please sign in to comment.