Skip to content

Commit

Permalink
v1.32.3
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyMorganz committed Aug 10, 2024
1 parent 85cc799 commit 42f422f
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.32.3] - 2024-08-10

### Fixed

- Fixed a regression in 1.32.2 breaking resolution of virtual paths from real paths, particularly around `script` and relative usages of it. ([#734](https://github.com/JohnnyMorganz/luau-lsp/issues/734), [#735](https://github.com/JohnnyMorganz/luau-lsp/issues/735))
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.32.2",
"version": "1.32.3",
"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 @@ -143,7 +143,7 @@ int main(int argc, char** argv)
return 1;
};

argparse::ArgumentParser program("luau-lsp", "1.32.2");
argparse::ArgumentParser program("luau-lsp", "1.32.3");
program.set_assign_chars(":=");

// Global arguments
Expand Down

0 comments on commit 42f422f

Please sign in to comment.