Skip to content

Commit 0c75412

Browse files
committed
v0.4.0
1 parent 65db032 commit 0c75412

File tree

10 files changed

+32
-12
lines changed

10 files changed

+32
-12
lines changed

examples/states-langium/extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
"@types/vscode": "1.46.0",
151151
"rimraf": "^3.0.2",
152152
"source-map-loader": "^3.0.0",
153-
"sprotty-vscode": "^0.3.0",
153+
"sprotty-vscode": "^0.4.0",
154154
"states-language-server": "^0.0.0",
155155
"states-sprotty-webview": "^0.0.8",
156156
"ts-loader": "^9.2.6",

examples/states-webview/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"dependencies": {
4040
"reflect-metadata": "^0.1.13",
4141
"sprotty": "~0.12.0",
42-
"sprotty-vscode-webview": "^0.3.0"
42+
"sprotty-vscode-webview": "^0.4.0"
4343
},
4444
"devDependencies": {
4545
"css-loader": "^6.5.1",

examples/states-xtext/extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
"@types/vscode": "1.46.0",
154154
"rimraf": "latest",
155155
"source-map-loader": "^3.0.0",
156-
"sprotty-vscode": "^0.3.0",
156+
"sprotty-vscode": "^0.4.0",
157157
"states-sprotty-webview": "^0.0.8",
158158
"ts-loader": "^9.2.6",
159159
"typescript": "~4.6.2",

sprotty-vscode-extension/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This change log covers only the VS Code extension integration of Sprotty. See also the change log of [sprotty](https://github.com/eclipse/sprotty/blob/master/packages/sprotty/CHANGELOG.md).
44

5+
### v0.4.0 (Nov. 2022)
6+
7+
* Updated `vscode-languageclient` to v8.0.2
8+
59
### v0.3.0 (Jun. 2022)
610

711
This release is to keep the package versions of `sprotty-vscode`, `sprotty-vscode-protocol` and `sprotty-vscode-webview` synchronized.

sprotty-vscode-extension/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sprotty-vscode",
3-
"version": "0.3.1",
3+
"version": "0.4.0",
44
"displayName": "Sprotty VSCode Integration",
55
"description": "Glue code to integrate Sprotty diagrams in VSCode extensions (extension part)",
66
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
@@ -30,7 +30,8 @@
3030
],
3131
"repository": {
3232
"type": "git",
33-
"url": "https://github.com/eclipse/sprotty-vscode.git"
33+
"url": "https://github.com/eclipse/sprotty-vscode.git",
34+
"directory": "sprotty-vscode-extension"
3435
},
3536
"engines": {
3637
"vscode": "^1.46.0"
@@ -43,7 +44,7 @@
4344
"types": "lib/index",
4445
"dependencies": {
4546
"path": "^0.12.7",
46-
"sprotty-vscode-protocol": "~0.3.0",
47+
"sprotty-vscode-protocol": "~0.4.0",
4748
"vscode-languageclient": "^8.0.2"
4849
},
4950
"devDependencies": {

sprotty-vscode-protocol/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This change log covers only the VS Code extension-to-webview protocol of Sprotty. See also the change log of [sprotty](https://github.com/eclipse/sprotty/blob/master/packages/sprotty/CHANGELOG.md).
44

5+
### v0.4.0 (Nov. 2022)
6+
7+
* Updated `vscode-languageserver-protocol` to v3.17.2
8+
59
### v0.3.0 (Jun. 2022)
610

711
* Updated `sprotty-protocol` to v0.12.0

sprotty-vscode-protocol/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sprotty-vscode-protocol",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"displayName": "Sprotty VSCode Integration - Protocol between webview and extension",
55
"description": "Glue code to integrate Sprotty diagrams in VSCode extensions (protocol part)",
66
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
@@ -30,7 +30,8 @@
3030
],
3131
"repository": {
3232
"type": "git",
33-
"url": "https://github.com/eclipse/sprotty-vscode.git"
33+
"url": "https://github.com/eclipse/sprotty-vscode.git",
34+
"directory": "sprotty-vscode-protocol"
3435
},
3536
"files": [
3637
"lib",

sprotty-vscode-webview/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This change log covers only the VS Code webview integration of Sprotty. See also the change log of [sprotty](https://github.com/eclipse/sprotty/blob/master/packages/sprotty/CHANGELOG.md).
44

5+
### v0.4.0 (Nov. 2022)
6+
7+
* Updated `vscode-languageclient` to v8.0.2
8+
59
### v0.3.0 (Jun. 2022)
610

711
* Updated `sprotty` to v0.12.0

sprotty-vscode-webview/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sprotty-vscode-webview",
3-
"version": "0.3.1",
3+
"version": "0.4.0",
44
"description": "Integration of Sprotty in a VS Code extensions (WebView part)",
55
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
66
"keywords": [
@@ -29,7 +29,8 @@
2929
],
3030
"repository": {
3131
"type": "git",
32-
"url": "https://github.com/eclipse/sprotty-vscode.git"
32+
"url": "https://github.com/eclipse/sprotty-vscode.git",
33+
"directory": "sprotty-vscode-webview"
3334
},
3435
"files": [
3536
"lib",
@@ -40,8 +41,8 @@
4041
"types": "lib/index",
4142
"dependencies": {
4243
"sprotty": "~0.12.0",
43-
"sprotty-vscode-protocol": "~0.3.0",
44-
"vscode-uri": "^3.0.2"
44+
"sprotty-vscode-protocol": "~0.4.0",
45+
"vscode-uri": "^3.0.6"
4546
},
4647
"devDependencies": {
4748
"@typescript-eslint/eslint-plugin": "^5.30.0",

yarn.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6476,6 +6476,11 @@ vscode-uri@^3.0.2:
64766476
resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.2.tgz#ecfd1d066cb8ef4c3a208decdbab9a8c23d055d0"
64776477
integrity sha512-jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA==
64786478

6479+
vscode-uri@^3.0.6:
6480+
version "3.0.6"
6481+
resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.6.tgz#5e6e2e1a4170543af30151b561a41f71db1d6f91"
6482+
integrity sha512-fmL7V1eiDBFRRnu+gfRWTzyPpNIHJTc4mWnFkwBUmO9U3KPgJAmTx7oxi2bl/Rh6HLdU7+4C9wlj0k2E4AdKFQ==
6483+
64796484
watchpack@^2.3.1:
64806485
version "2.3.1"
64816486
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.3.1.tgz#4200d9447b401156eeca7767ee610f8809bc9d25"

0 commit comments

Comments
 (0)