Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
update correct version
  • Loading branch information
jfrolich committed Sep 3, 2024
1 parent db6692a commit ced6afd
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 37 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
## master

## 1.58.0

#### :bug: Bug fix

- Fix an issue where the extension would still crash in a monorepo with rewatch

#### :rocket: New Feature

- Add hightlighting for the new dict literal syntax `dict{}`. https://github.com/rescript-lang/rescript-vscode/pull/934
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "ReScript language support (official)",
"author": "ReScript Team",
"license": "MIT",
"version": "1.56.0",
"version": "1.58.0",
"repository": {
"type": "git",
"url": "https://github.com/rescript-lang/rescript-vscode"
Expand Down
72 changes: 36 additions & 36 deletions server/package.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
{
"name": "@rescript/language-server",
"description": "LSP server for ReScript",
"version": "1.56.0",
"author": "ReScript Team",
"license": "MIT",
"bin": {
"rescript-language-server": "./out/cli.js"
},
"keywords": [
"ReScript",
"LSP",
"Language Server"
],
"files": [
"out/*",
"analysis_binaries",
"README.md"
],
"engines": {
"node": "*"
},
"homepage": "https://github.com/rescript-lang/rescript-vscode/server/README.md",
"repository": {
"type": "git",
"url": "https://github.com/rescript-lang/rescript-vscode",
"directory": "server"
},
"bugs": {
"url": "https://github.com/rescript-lang/rescript-vscode/issues"
},
"dependencies": {
"chokidar": "^3.5.1",
"vscode-jsonrpc": "^8.0.1",
"vscode-languageserver": "^8.0.1",
"vscode-languageserver-protocol": "^3.17.1"
}
"name": "@rescript/language-server",
"description": "LSP server for ReScript",
"version": "1.58.0",
"author": "ReScript Team",
"license": "MIT",
"bin": {
"rescript-language-server": "./out/cli.js"
},
"keywords": [
"ReScript",
"LSP",
"Language Server"
],
"files": [
"out/*",
"analysis_binaries",
"README.md"
],
"engines": {
"node": "*"
},
"homepage": "https://github.com/rescript-lang/rescript-vscode/server/README.md",
"repository": {
"type": "git",
"url": "https://github.com/rescript-lang/rescript-vscode",
"directory": "server"
},
"bugs": {
"url": "https://github.com/rescript-lang/rescript-vscode/issues"
},
"dependencies": {
"chokidar": "^3.5.1",
"vscode-jsonrpc": "^8.0.1",
"vscode-languageserver": "^8.0.1",
"vscode-languageserver-protocol": "^3.17.1"
}
}

0 comments on commit ced6afd

Please sign in to comment.