Skip to content

Commit 6a705ce

Browse files
authored
v2.0.0
1 parent cfbecaa commit 6a705ce

File tree

23 files changed

+149
-116
lines changed

23 files changed

+149
-116
lines changed

.prettierrc

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"$schema": "http://json.schemastore.org/prettierrc",
3+
"singleQuote": true,
4+
"jsxSingleQuote": true,
5+
"arrowParens": "avoid",
6+
"trailingComma": "none",
7+
"endOfLine": "lf",
8+
"printWidth": 140,
9+
"tabWidth": 4,
10+
"overrides": [
11+
{
12+
"files": ["*.json", "*.yml"],
13+
"options": {
14+
"printWidth": 100,
15+
"tabWidth": 2
16+
}
17+
}
18+
],
19+
"plugins": ["prettier-plugin-packagejson"]
20+
}

.vscode/settings.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"source.fixAll.eslint": true
1111
},
1212
"eslint.validate": ["javascript", "typescript"],
13-
"prettier.prettierPath": "node_modules/prettier",
1413
"search.exclude": {
1514
"**/node_modules": true,
1615
"**/lib": true

CHANGELOG.md

Lines changed: 30 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,49 @@
11
# Eclipse GLSP Eclipse Integration Changelog
22

3-
## v1.1.0 - upcoming
3+
## v2.0.0 - 14/10/2023(<https://github.com/eclipse-glsp/glsp-eclipse-integration/releases/tag/v2.0.0>)
44

55
### Changes
66

7-
- [diagram] Fixed a bug that could cause a crash when closing a diagram editor on Windows [#59](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/59)
8-
- [debug] Fixed a bug to ensure that the system browser opens reliably when using the `Debug (External Browser)` command [#60](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/60)
9-
- [websocket] Fixed a bug that could trigger premature session disposal even if other GLSP clients where associated with this session [#63](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/63)
10-
- [eclipse] Propagate the GLSP diagram selection to the Eclipse selection service [#73](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/73) -- Contributed on behalf of STMicroelectronics
7+
- [diagram] Fix a bug that could cause a crash when closing a diagram editor on Windows [#59](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/59)
8+
- [debug] Fix a bug to ensure that the system browser opens reliably when using the `Debug (External Browser)` command [#60](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/60)
9+
- [websocket] Fix a bug that could trigger premature session disposal even if other GLSP clients where associated with this session [#63](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/63)
10+
- [eclipse] Propagate the GLSP diagram selection to the Eclipse selection service [#73](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/73) -- Contributed on behalf of STMicroelectronics
11+
- [eclipse] Fix a dead-lock bug that could occur saving by closing a dirty editor [#75](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/75)
12+
- [diagram] Add context menu support for Windows (Edge) [#77](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/77)
13+
- [websocket] Implement websocket reconnect handling in example app [#84](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/84)
14+
- [server] Ensure that resources with a symlink a correctly resolved by the Jetty server on Windows [#85](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/85)
15+
- [deps] Remove upper bound version requirements for Guava and Guice to stay compatible with newer Eclipse versions [#89](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/89)
1116

1217
### Breaking Changes
1318

14-
- [websocket] Update to Jetty Websocket 10 [#70](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/70) - Contributed on behalf of STMicroelectronics
15-
- This includes breaking changes due to major API changes in Jetty and the following new minimum versions:
16-
- Jetty 9.x -> Jetty 10.0.13
17-
- LSP4J -> 0.8.0 -> 0.11.0
18-
- ELK 0.7.0 -> 0.8.1
19-
- Log4J 1.2x -> 2.19
20-
- Remove the `keepAliveModule` and rely on Jetty's infinite session timeout mechanism instead
21-
- [eclipse] Rework of the GLSPDiagramEditor to support E4 Parts [#83](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/83)
22-
- Most methods in GLSPDiagramEditor moved to GLSPDiagramComposite if you want to override them with your own implementation override GLSPDiagramEditor.createGLSPDiagramComposite() and return our own class
23-
- Extent GLSPDiagramPart to implement your own E4 Part
24-
- GLSPEditorRegistry works on GLSPDiagramComposite and no longer on GLSPDiagramEditor, which is the implementation used by E3 and E4
19+
- [websocket] Update to Jetty Websocket 10 [#70](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/70) - Contributed on behalf of STMicroelectronics
20+
- This includes breaking changes due to major API changes in Jetty and the following new minimum versions:
21+
- Jetty 9.x -> Jetty 10.0.13
22+
- LSP4J -> 0.8.0 -> 0.11.0
23+
- ELK 0.7.0 -> 0.8.1
24+
- Log4J 1.2x -> 2.19
25+
- Remove the `keepAliveModule` and rely on Jetty's infinite session timeout mechanism instead
26+
- [eclipse] Rework of the GLSPDiagramEditor to support E4 Parts [#83](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/83)
27+
- Most methods in GLSPDiagramEditor moved to GLSPDiagramComposite if you want to override them with your own implementation override GLSPDiagramEditor.createGLSPDiagramComposite() and return our own class
28+
- Extent GLSPDiagramPart to implement your own E4 Part
29+
- GLSPEditorRegistry works on GLSPDiagramComposite and no longer on GLSPDiagramEditor, which is the implementation used by E3 and E4
30+
- [client] Remove dependency to `vscode-ws-jsonrpc`. Use websocket handling provided by glsp-client instead [#76](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/76)
31+
- [deps] Use Java 17 as minimum compilation target since Java 11 is EOL [#91](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/91)
2532

2633
## [v1.0.0 - 30/06/2022](https://github.com/eclipse-glsp/glsp-eclipse-integration/releases/tag/v1.0.0)
2734

2835
### Changes
2936

30-
- [diagram] Fixed a bug that prevented successful completion the `DefaultModelInitializationConstraint` [#47](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/47)
31-
- [editor] Made editor retrieval thread safe to ensure that actions that are sent after the editor has been disposed are correctly handled (i.e. ignored) [#48](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/48)
32-
- [example] Improved and modernized styling of the GLSP workflow example [#49](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/49)
33-
- [editor] Fixed a bug to ensure that keybindings are also working when using `WebView2` [#54](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/54/)
37+
- [diagram] Fix a bug that prevented successful completion the `DefaultModelInitializationConstraint` [#47](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/47)
38+
- [editor] Make editor retrieval thread safe to ensure that actions that are sent after the editor has been disposed are correctly handled (i.e. ignored) [#48](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/48)
39+
- [example] Improve and modernize styling of the GLSP workflow example [#49](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/49)
40+
- [editor] Fix a bug to ensure that keybindings are also working when using `WebView2` [#54](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/54/)
3441

3542
### Breaking Changes
3643

37-
- [build] Removed dependency to `Apache Commons IO` [#52](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/52)
38-
- [gmodel] Rename handlers and services that operate directly on the GModels [#53](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/53):
39-
- `IdePasteOperationHandler` -> `GModelIdePasteOperationHandler`
44+
- [build] Remove dependency to `Apache Commons IO` [#52](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/52)
45+
- [gmodel] Rename handlers and services that operate directly on the GModels [#53](https://github.com/eclipse-glsp/glsp-eclipse-integration/pull/53):
46+
- `IdePasteOperationHandler` -> `GModelIdePasteOperationHandler`
4047

4148
## [v0.9.0- 09/12/2021](https://github.com/eclipse-glsp/glsp-eclipse-integration/releases/tag/v0.9.0)
4249

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ pipeline {
136136
stage('Deploy (master only)') {
137137
when {
138138
allOf {
139-
branch 'master';
139+
branch 'skipForRelease';
140140
expression {
141141
/* Only trigger the deployment job if the changeset contains changes in
142142
the `server` or `client/packages/` directory */

client/examples/workflow-webapp/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp-examples/workflow-webapp",
3-
"version": "1.1.0-next",
3+
"version": "2.0.0",
44
"private": true,
55
"description": "GLSP-based webapp for the Workflow example",
66
"scripts": {
@@ -14,8 +14,8 @@
1414
"watch": "tsc -w"
1515
},
1616
"dependencies": {
17-
"@eclipse-glsp-examples/workflow-glsp": "next",
18-
"@eclipse-glsp/ide": "^1.1.0-next"
17+
"@eclipse-glsp-examples/workflow-glsp": "~2.0.0",
18+
"@eclipse-glsp/ide": "~2.0.0"
1919
},
2020
"devDependencies": {
2121
"@vscode/codicons": "^0.0.25",

client/lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0-next",
2+
"version": "2.0.0",
33
"useWorkspaces": true,
44
"npmClient": "yarn",
55
"command": {

client/packages/ide/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/ide",
3-
"version": "1.1.0-next",
3+
"version": "2.0.0",
44
"description": "Glue code to integrate GLSP clients into Eclipse via a webapp",
55
"homepage": "https://www.eclipse.org/glsp/",
66
"bugs": "https://github.com/eclipse-glsp/glsp/issues",
@@ -34,7 +34,7 @@
3434
"watch": "tsc -w"
3535
},
3636
"dependencies": {
37-
"@eclipse-glsp/client": "next"
37+
"@eclipse-glsp/client": "~2.0.0"
3838
},
3939
"engines": {
4040
"yarn": "1.0.x || >=1.2.1"

client/yarn.lock

Lines changed: 33 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -206,12 +206,12 @@
206206
resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
207207
integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
208208

209-
"@eclipse-glsp-examples/workflow-glsp@next":
210-
version "1.1.0-next.e8bdd69.287"
211-
resolved "https://registry.yarnpkg.com/@eclipse-glsp-examples/workflow-glsp/-/workflow-glsp-1.1.0-next.e8bdd69.287.tgz#9d36057c89103ea88b9be8f917291e30d89c7121"
212-
integrity sha512-uGHiBqbC7FcYZ5jGQUVuDhHGQar1vf1w5MZc3ocgd2HezBSca5k/U/du/AsdyDF/sYeydzcknFqbqVA2npj53Q==
209+
"@eclipse-glsp-examples/workflow-glsp@~2.0.0":
210+
version "2.0.0"
211+
resolved "https://registry.yarnpkg.com/@eclipse-glsp-examples/workflow-glsp/-/workflow-glsp-2.0.0.tgz#d6a566acd3f397959ff6ee9fa36fc8ebd039d290"
212+
integrity sha512-MuhNaJwj6D6tqs7j2kR/t2tgYJbk6dTFN74zba2aLBg3ObEwHjJxJ5JMr64ByYoG4c+PR6HFvEXDbvmGdpuyBA==
213213
dependencies:
214-
"@eclipse-glsp/client" "1.1.0-next.e8bdd69.287+e8bdd69"
214+
"@eclipse-glsp/client" "~2.0.0"
215215
balloon-css "^0.5.0"
216216

217217
"@eclipse-glsp/[email protected]+cbae4df":
@@ -226,12 +226,12 @@
226226
semver "^7.5.1"
227227
shelljs "^0.8.5"
228228

229-
"@eclipse-glsp/client@1.1.0-next.e8bdd69.287+e8bdd69", "@eclipse-glsp/client@next":
230-
version "1.1.0-next.e8bdd69.287"
231-
resolved "https://registry.yarnpkg.com/@eclipse-glsp/client/-/client-1.1.0-next.e8bdd69.287.tgz#f89a9beba9adfe12aec4ecc8f0222c1e5c4ebbf6"
232-
integrity sha512-Br0XVjo2xS+0PU6nRcx1wKluIP1BwfDg9yLFJvyZNQXWMnuGZ/28pzXTtFr/q0BOLoFXMEKjZT5i/5nvO3lG5w==
229+
"@eclipse-glsp/client@~2.0.0":
230+
version "2.0.0"
231+
resolved "https://registry.yarnpkg.com/@eclipse-glsp/client/-/client-2.0.0.tgz#1100d7b2de0b4a92f4397417cc196fe7324af0f5"
232+
integrity sha512-Bi3Pxv0jgr8uyKTtxivPEfD6nHYPB35a0+eaq5wjxymB3VlX3Fgguy+dAmO9P2FexRN/d4Wh8ZwWhtjC3XP0AQ==
233233
dependencies:
234-
"@eclipse-glsp/sprotty" "1.1.0-next.e8bdd69.287+e8bdd69"
234+
"@eclipse-glsp/sprotty" "~2.0.0"
235235
autocompleter "^9.1.0"
236236
file-saver "^2.0.5"
237237
lodash "4.17.21"
@@ -308,24 +308,25 @@
308308
dependencies:
309309
prettier-plugin-packagejson "~2.4.6"
310310

311-
"@eclipse-glsp/protocol@1.1.0-next.e8bdd69.287+e8bdd69":
312-
version "1.1.0-next.e8bdd69.287"
313-
resolved "https://registry.yarnpkg.com/@eclipse-glsp/protocol/-/protocol-1.1.0-next.e8bdd69.287.tgz#5a66fb8f75a5be1f99a55fb82f65561923a7e24a"
314-
integrity sha512-wvOk8pZ6vtv4mcpAifkHXNCER8RpzOFEtTxCQqxfs3Hgol7/vPmP5sWv4TRMgOB9KtZJ3C/woh3t0EOTsb0yOQ==
311+
"@eclipse-glsp/protocol@~2.0.0":
312+
version "2.0.0"
313+
resolved "https://registry.yarnpkg.com/@eclipse-glsp/protocol/-/protocol-2.0.0.tgz#d09fa068c32dadf678696c987feded1790f3099b"
314+
integrity sha512-6vFP2aY0+9AcrWvAtNFzcDX00z/rEFwTzYXg9ucDEYwYn105DUadhMruwSn9rsWLxf2movBzEkLSE2TNOX1PkQ==
315315
dependencies:
316316
sprotty-protocol "0.15.0-next.044bba2.13"
317317
uuid "7.0.3"
318318
vscode-jsonrpc "^8.0.2"
319319

320-
"@eclipse-glsp/sprotty@1.1.0-next.e8bdd69.287+e8bdd69":
321-
version "1.1.0-next.e8bdd69.287"
322-
resolved "https://registry.yarnpkg.com/@eclipse-glsp/sprotty/-/sprotty-1.1.0-next.e8bdd69.287.tgz#2b79cc7dcf7f76cb7b4ec4ac31837fa83dd2da54"
323-
integrity sha512-teTwr4UROcegSveY+AdhsB87kWvSQsNbmMCohxTbqTeU5cA2d5Bzwi8eevhrTVPbT6iXohS+yJWAYvYNayvK5Q==
320+
"@eclipse-glsp/sprotty@~2.0.0":
321+
version "2.0.0"
322+
resolved "https://registry.yarnpkg.com/@eclipse-glsp/sprotty/-/sprotty-2.0.0.tgz#dc3915a2ec8959ffbc0b518854820d46f7af5cef"
323+
integrity sha512-bXnPwYhyw/dOl4YSGcMciBCJp6toYesa0v8U4iDs0P+x7/Q9yMAPBRYKajxKzyuoVs09hvCkNUVEM1e4cRQ1BA==
324324
dependencies:
325-
"@eclipse-glsp/protocol" "1.1.0-next.e8bdd69.287+e8bdd69"
325+
"@eclipse-glsp/protocol" "~2.0.0"
326326
autocompleter "^9.1.0"
327327
snabbdom "^3.5.1"
328-
sprotty "0.15.0-next.044bba2.13"
328+
sprotty "1.0.0"
329+
sprotty-protocol "1.0.0"
329330

330331
"@eclipse-glsp/[email protected]+cbae4df":
331332
version "1.1.0-next.cbae4df.145"
@@ -6739,20 +6740,25 @@ sprintf-js@~1.0.2:
67396740
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
67406741
integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
67416742

6742-
6743+
67436744
version "0.15.0-next.044bba2.13"
67446745
resolved "https://registry.yarnpkg.com/sprotty-protocol/-/sprotty-protocol-0.15.0-next.044bba2.13.tgz#10d5c36b00a8a24f62007336743c7e98d56e205b"
67456746
integrity sha512-DmWdIXFeZ5Gwa9uicbTNUkJMfUZa62w76Gb1w9lpYDs2S21HFZU4bvPuMD+yN31V/ChX5TGPCCTHmHLJ3Oe85w==
67466747

6747-
6748-
version "0.15.0-next.044bba2.13"
6749-
resolved "https://registry.yarnpkg.com/sprotty/-/sprotty-0.15.0-next.044bba2.13.tgz#b5b59869406e8b1c5f65fdf8dfdcb49d4a93ca1a"
6750-
integrity sha512-rqsoHBuHf/SB7Cd8xyEOXVfa+jb709Evwe/IvjnUaercbf6qKnC99IoAeMYAV0VK5HXWExkhRUBpPqWEwiRFeQ==
6748+
[email protected], sprotty-protocol@^1.0.0:
6749+
version "1.0.0"
6750+
resolved "https://registry.yarnpkg.com/sprotty-protocol/-/sprotty-protocol-1.0.0.tgz#b22e2da7e10b168debdc17feb61c4b832f01f614"
6751+
integrity sha512-p1H+ihcOmj0LEk2atcwOnYQPm0WByaOB1yX7fd869ONfQ5R+7x0X20YPdVLeCWmnhsszC/Rf91ojwaQiNIiHNA==
6752+
6753+
6754+
version "1.0.0"
6755+
resolved "https://registry.yarnpkg.com/sprotty/-/sprotty-1.0.0.tgz#f575a97064ec90f08c468aa3f98a8b0df6887230"
6756+
integrity sha512-PaGVT1Qc19Mjl1X29UtMm1TNqz9k4AT1QgaXc04njSBKDsSfskS0OupV+oV5m/igbf+juOcHwcbcZdhAxF7RjQ==
67516757
dependencies:
67526758
autocompleter "^9.1.0"
67536759
file-saver "^2.0.5"
67546760
snabbdom "^3.5.1"
6755-
sprotty-protocol "0.15.0-next.044bba2.13+044bba2"
6761+
sprotty-protocol "^1.0.0"
67566762
tinyqueue "^2.0.3"
67576763

67586764
[email protected], ssri@^9.0.0:
@@ -7595,6 +7601,7 @@ [email protected]:
75957601
integrity sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==
75967602

75977603
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
7604+
name wrap-ansi-cjs
75987605
version "7.0.0"
75997606
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
76007607
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==

server/example/org.eclipse.glsp.ide.workflow.editor/META-INF/MANIFEST.MF

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: Workflow Editor
44
Bundle-SymbolicName: org.eclipse.glsp.ide.workflow.editor;singleton:=true
5-
Bundle-Version: 1.1.0.qualifier
5+
Bundle-Version: 2.0.0
66
Bundle-ClassPath: .
77
Bundle-Activator: org.eclipse.glsp.ide.workflow.editor.Activator
88
Bundle-Vendor: Eclipse GLSP
99
Require-Bundle: org.eclipse.elk.alg.common;bundle-version="0.8.1",
1010
org.eclipse.elk.alg.layered;bundle-version="0.8.1",
1111
org.eclipse.elk.graph.text;bundle-version="0.8.1",
12-
org.eclipse.glsp.server.websocket;bundle-version="[1.0.0,2.0.0)",
13-
org.eclipse.glsp.layout;bundle-version="[1.0.0,2.0.0)",
14-
org.eclipse.glsp.ide.editor;bundle-version="[1.0.0,2.0.0)",
15-
org.eclipse.glsp.server;bundle-version="[1.0.0,2.0.0)",
16-
org.eclipse.glsp.example.workflow;bundle-version="[1.0.0,2.0.0)",
12+
org.eclipse.glsp.server.websocket;bundle-version="[2.0.0,3.0.0)",
13+
org.eclipse.glsp.layout;bundle-version="[2.0.0,3.0.0)",
14+
org.eclipse.glsp.ide.editor;bundle-version="[1.0.0,2.0.0]",
15+
org.eclipse.glsp.server;bundle-version="[2.0.0,3.0.0)",
16+
org.eclipse.glsp.example.workflow;bundle-version="[2.0.0,3.0.0)",
1717
org.eclipse.core.runtime;bundle-version="3.18.0",
1818
org.eclipse.ui;bundle-version="3.117.0",
1919
org.eclipse.elk.core;bundle-version="0.8.1",

server/example/org.eclipse.glsp.ide.workflow.editor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>org.eclipse.glsp.ide</groupId>
1010
<artifactId>org.eclipse.glsp.ide.parent</artifactId>
11-
<version>1.1.0-SNAPSHOT</version>
11+
<version>2.0.0</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

0 commit comments

Comments
 (0)