Skip to content

Commit 55723f2

Browse files
authored
Update versions to 2.0.0 (#1156)
1 parent 3a2d866 commit 55723f2

File tree

27 files changed

+95
-85
lines changed

27 files changed

+95
-85
lines changed

examples/arithmetics/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "langium-arithmetics-dsl",
33
"displayName": "Arithmetics DSL",
4-
"version": "1.2.1",
4+
"version": "2.0.0",
55
"description": "Example language built with Langium",
66
"homepage": "https://langium.org",
77
"engines": {
@@ -69,23 +69,23 @@
6969
"dependencies": {
7070
"chalk": "~5.3.0",
7171
"commander": "~10.0.0",
72-
"langium": "~1.2.0",
72+
"langium": "~2.0.0",
7373
"vscode-languageclient": "~8.0.2",
7474
"vscode-languageserver": "~8.0.2"
7575
},
7676
"devDependencies": {
77-
"langium-cli": "~1.2.0"
77+
"langium-cli": "~2.0.0"
7878
},
7979
"volta": {
8080
"node": "18.17.0",
8181
"npm": "9.5.1"
8282
},
8383
"repository": {
8484
"type": "git",
85-
"url": "https://github.com/langium/langium",
85+
"url": "https://github.com/eclipse-langium/langium",
8686
"directory": "examples/arithmetics"
8787
},
88-
"bugs": "https://github.com/langium/langium/issues",
88+
"bugs": "https://github.com/eclipse-langium/langium/issues",
8989
"author": {
9090
"name": "TypeFox",
9191
"url": "https://www.typefox.io"

examples/arithmetics/src/language-server/generated/ast.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/******************************************************************************
2-
* This file was generated by langium-cli 1.2.1.
2+
* This file was generated by langium-cli 2.0.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/arithmetics/src/language-server/generated/grammar.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/******************************************************************************
2-
* This file was generated by langium-cli 1.2.1.
2+
* This file was generated by langium-cli 2.0.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/arithmetics/src/language-server/generated/module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/******************************************************************************
2-
* This file was generated by langium-cli 1.2.1.
2+
* This file was generated by langium-cli 2.0.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/domainmodel/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "langium-domainmodel-dsl",
33
"displayName": "Domain Model DSL",
4-
"version": "1.2.0",
4+
"version": "2.0.0",
55
"description": "Example language built with Langium",
66
"homepage": "https://langium.org",
77
"engines": {
@@ -60,24 +60,24 @@
6060
"dependencies": {
6161
"chalk": "~5.3.0",
6262
"commander": "~10.0.0",
63-
"langium": "~1.2.0",
63+
"langium": "~2.0.0",
6464
"lodash": "~4.17.21",
6565
"vscode-languageclient": "~8.0.2",
6666
"vscode-languageserver": "~8.0.2"
6767
},
6868
"devDependencies": {
69-
"langium-cli": "~1.2.0"
69+
"langium-cli": "~2.0.0"
7070
},
7171
"volta": {
7272
"node": "18.17.0",
7373
"npm": "9.5.1"
7474
},
7575
"repository": {
7676
"type": "git",
77-
"url": "https://github.com/langium/langium",
77+
"url": "https://github.com/eclipse-langium/langium",
7878
"directory": "examples/domainmodel"
7979
},
80-
"bugs": "https://github.com/langium/langium/issues",
80+
"bugs": "https://github.com/eclipse-langium/langium/issues",
8181
"author": {
8282
"name": "TypeFox",
8383
"url": "https://www.typefox.io"

examples/domainmodel/src/language-server/generated/ast.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/******************************************************************************
2-
* This file was generated by langium-cli 1.2.1.
2+
* This file was generated by langium-cli 2.0.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/domainmodel/src/language-server/generated/grammar.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/******************************************************************************
2-
* This file was generated by langium-cli 1.2.1.
2+
* This file was generated by langium-cli 2.0.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/domainmodel/src/language-server/generated/module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/******************************************************************************
2-
* This file was generated by langium-cli 1.2.1.
2+
* This file was generated by langium-cli 2.0.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/requirements/package.json

+13-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "langium-requirements-dsl",
33
"displayName": "Requirements DSL",
44
"description": "A demo showing how to combine two DSLs",
5-
"version": "1.2.0",
5+
"version": "2.0.0",
66
"engines": {
77
"vscode": "^1.67.0"
88
},
@@ -71,16 +71,26 @@
7171
"dependencies": {
7272
"chalk": "~5.3.0",
7373
"commander": "~10.0.0",
74-
"langium": "~1.2.0",
74+
"langium": "~2.0.0",
7575
"lodash": "~4.17.21",
7676
"vscode-languageclient": "~8.0.2",
7777
"vscode-languageserver": "~8.0.2"
7878
},
7979
"devDependencies": {
80-
"langium-cli": "~1.2.0"
80+
"langium-cli": "~2.0.0"
8181
},
8282
"volta": {
8383
"node": "18.17.0",
8484
"npm": "9.5.1"
85+
},
86+
"repository": {
87+
"type": "git",
88+
"url": "https://github.com/eclipse-langium/langium",
89+
"directory": "examples/requirements"
90+
},
91+
"bugs": "https://github.com/eclipse-langium/langium/issues",
92+
"author": {
93+
"name": "TypeFox",
94+
"url": "https://www.typefox.io"
8595
}
8696
}

examples/requirements/src/language-server/generated/ast.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/******************************************************************************
2-
* This file was generated by langium-cli 1.2.1.
2+
* This file was generated by langium-cli 2.0.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/requirements/src/language-server/generated/grammar.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/******************************************************************************
2-
* This file was generated by langium-cli 1.2.1.
2+
* This file was generated by langium-cli 2.0.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/requirements/src/language-server/generated/module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/******************************************************************************
2-
* This file was generated by langium-cli 1.2.1.
2+
* This file was generated by langium-cli 2.0.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/statemachine/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "langium-statemachine-dsl",
33
"displayName": "State Machine DSL",
4-
"version": "1.2.0",
4+
"version": "2.0.0",
55
"description": "Example language built with Langium",
66
"homepage": "https://langium.org",
77
"engines": {
@@ -59,22 +59,22 @@
5959
"dependencies": {
6060
"chalk": "~5.3.0",
6161
"commander": "~10.0.0",
62-
"langium": "~1.2.0",
62+
"langium": "~2.0.0",
6363
"lodash": "^4.17.21"
6464
},
6565
"devDependencies": {
66-
"langium-cli": "~1.2.0"
66+
"langium-cli": "~2.0.0"
6767
},
6868
"volta": {
6969
"node": "18.17.0",
7070
"npm": "9.5.1"
7171
},
7272
"repository": {
7373
"type": "git",
74-
"url": "https://github.com/langium/langium",
74+
"url": "https://github.com/eclipse-langium/langium",
7575
"directory": "examples/statemachine"
7676
},
77-
"bugs": "https://github.com/langium/langium/issues",
77+
"bugs": "https://github.com/eclipse-langium/langium/issues",
7878
"author": {
7979
"name": "TypeFox",
8080
"url": "https://www.typefox.io"

examples/statemachine/src/language-server/generated/ast.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/******************************************************************************
2-
* This file was generated by langium-cli 1.2.1.
2+
* This file was generated by langium-cli 2.0.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/statemachine/src/language-server/generated/grammar.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/******************************************************************************
2-
* This file was generated by langium-cli 1.2.1.
2+
* This file was generated by langium-cli 2.0.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/statemachine/src/language-server/generated/module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/******************************************************************************
2-
* This file was generated by langium-cli 1.2.1.
2+
* This file was generated by langium-cli 2.0.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

0 commit comments

Comments
 (0)