Skip to content

Commit ced6afd

Browse files
committed
update version
update correct version
1 parent db6692a commit ced6afd

File tree

3 files changed

+43
-37
lines changed

3 files changed

+43
-37
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212
1313
## master
1414

15+
## 1.58.0
16+
17+
#### :bug: Bug fix
18+
19+
- Fix an issue where the extension would still crash in a monorepo with rewatch
20+
1521
#### :rocket: New Feature
1622

1723
- Add hightlighting for the new dict literal syntax `dict{}`. https://github.com/rescript-lang/rescript-vscode/pull/934

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "ReScript language support (official)",
55
"author": "ReScript Team",
66
"license": "MIT",
7-
"version": "1.56.0",
7+
"version": "1.58.0",
88
"repository": {
99
"type": "git",
1010
"url": "https://github.com/rescript-lang/rescript-vscode"

server/package.json

+36-36
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
{
2-
"name": "@rescript/language-server",
3-
"description": "LSP server for ReScript",
4-
"version": "1.56.0",
5-
"author": "ReScript Team",
6-
"license": "MIT",
7-
"bin": {
8-
"rescript-language-server": "./out/cli.js"
9-
},
10-
"keywords": [
11-
"ReScript",
12-
"LSP",
13-
"Language Server"
14-
],
15-
"files": [
16-
"out/*",
17-
"analysis_binaries",
18-
"README.md"
19-
],
20-
"engines": {
21-
"node": "*"
22-
},
23-
"homepage": "https://github.com/rescript-lang/rescript-vscode/server/README.md",
24-
"repository": {
25-
"type": "git",
26-
"url": "https://github.com/rescript-lang/rescript-vscode",
27-
"directory": "server"
28-
},
29-
"bugs": {
30-
"url": "https://github.com/rescript-lang/rescript-vscode/issues"
31-
},
32-
"dependencies": {
33-
"chokidar": "^3.5.1",
34-
"vscode-jsonrpc": "^8.0.1",
35-
"vscode-languageserver": "^8.0.1",
36-
"vscode-languageserver-protocol": "^3.17.1"
37-
}
2+
"name": "@rescript/language-server",
3+
"description": "LSP server for ReScript",
4+
"version": "1.58.0",
5+
"author": "ReScript Team",
6+
"license": "MIT",
7+
"bin": {
8+
"rescript-language-server": "./out/cli.js"
9+
},
10+
"keywords": [
11+
"ReScript",
12+
"LSP",
13+
"Language Server"
14+
],
15+
"files": [
16+
"out/*",
17+
"analysis_binaries",
18+
"README.md"
19+
],
20+
"engines": {
21+
"node": "*"
22+
},
23+
"homepage": "https://github.com/rescript-lang/rescript-vscode/server/README.md",
24+
"repository": {
25+
"type": "git",
26+
"url": "https://github.com/rescript-lang/rescript-vscode",
27+
"directory": "server"
28+
},
29+
"bugs": {
30+
"url": "https://github.com/rescript-lang/rescript-vscode/issues"
31+
},
32+
"dependencies": {
33+
"chokidar": "^3.5.1",
34+
"vscode-jsonrpc": "^8.0.1",
35+
"vscode-languageserver": "^8.0.1",
36+
"vscode-languageserver-protocol": "^3.17.1"
37+
}
3838
}

0 commit comments

Comments
 (0)