Skip to content

Commit b2a6fe9

Browse files
authored
Update to v3.2.0 (#1662)
1 parent 9a1c021 commit b2a6fe9

File tree

31 files changed

+94
-68
lines changed

31 files changed

+94
-68
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ We maintain separate change logs for the individual packages:
99

1010
## Closed Issues and PRs
1111

12+
* [v3.2.0](https://github.com/eclipse-langium/langium/milestone/13?closed=1)
1213
* [v3.1.0](https://github.com/eclipse-langium/langium/milestone/12?closed=1)
1314
* [v3.0.0](https://github.com/eclipse-langium/langium/milestone/11?closed=1)
1415
* [v2.1.0](https://github.com/eclipse-langium/langium/milestone/10?closed=1)

examples/arithmetics/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "langium-arithmetics-dsl",
33
"displayName": "Arithmetics DSL",
4-
"version": "3.1.0",
4+
"version": "3.2.0",
55
"description": "Example language built with Langium",
66
"homepage": "https://langium.org",
77
"engines": {
@@ -69,12 +69,12 @@
6969
"dependencies": {
7070
"chalk": "~5.3.0",
7171
"commander": "~11.0.0",
72-
"langium": "~3.1.0",
72+
"langium": "~3.2.0",
7373
"vscode-languageclient": "~9.0.1",
7474
"vscode-languageserver": "~9.0.1"
7575
},
7676
"devDependencies": {
77-
"langium-cli": "~3.1.0"
77+
"langium-cli": "~3.2.0"
7878
},
7979
"volta": {
8080
"node": "18.19.1",

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 3.1.0.
2+
* This file was generated by langium-cli 3.2.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 3.1.0.
2+
* This file was generated by langium-cli 3.2.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 3.1.0.
2+
* This file was generated by langium-cli 3.2.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/domainmodel/package.json

+3-3
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": "3.1.0",
4+
"version": "3.2.0",
55
"description": "Example language built with Langium",
66
"homepage": "https://langium.org",
77
"engines": {
@@ -60,13 +60,13 @@
6060
"dependencies": {
6161
"chalk": "~5.3.0",
6262
"commander": "~11.0.0",
63-
"langium": "~3.1.0",
63+
"langium": "~3.2.0",
6464
"lodash": "~4.17.21",
6565
"vscode-languageclient": "~9.0.1",
6666
"vscode-languageserver": "~9.0.1"
6767
},
6868
"devDependencies": {
69-
"langium-cli": "~3.1.0"
69+
"langium-cli": "~3.2.0"
7070
},
7171
"volta": {
7272
"node": "18.19.1",

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 3.1.0.
2+
* This file was generated by langium-cli 3.2.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 3.1.0.
2+
* This file was generated by langium-cli 3.2.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 3.1.0.
2+
* This file was generated by langium-cli 3.2.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/requirements/package.json

+3-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": "3.1.0",
5+
"version": "3.2.0",
66
"engines": {
77
"vscode": "^1.67.0"
88
},
@@ -71,12 +71,12 @@
7171
"dependencies": {
7272
"chalk": "~5.3.0",
7373
"commander": "~11.0.0",
74-
"langium": "~3.1.0",
74+
"langium": "~3.2.0",
7575
"vscode-languageclient": "~9.0.1",
7676
"vscode-languageserver": "~9.0.1"
7777
},
7878
"devDependencies": {
79-
"langium-cli": "~3.1.0"
79+
"langium-cli": "~3.2.0"
8080
},
8181
"volta": {
8282
"node": "18.19.1",

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 3.1.0.
2+
* This file was generated by langium-cli 3.2.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 3.1.0.
2+
* This file was generated by langium-cli 3.2.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 3.1.0.
2+
* This file was generated by langium-cli 3.2.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

examples/statemachine/package.json

+3-3
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": "3.1.0",
4+
"version": "3.2.0",
55
"description": "Example language built with Langium",
66
"homepage": "https://langium.org",
77
"engines": {
@@ -59,12 +59,12 @@
5959
"dependencies": {
6060
"chalk": "~5.3.0",
6161
"commander": "~11.0.0",
62-
"langium": "~3.1.0",
62+
"langium": "~3.2.0",
6363
"vscode-languageclient": "~9.0.1",
6464
"vscode-languageserver": "~9.0.1"
6565
},
6666
"devDependencies": {
67-
"langium-cli": "~3.1.0"
67+
"langium-cli": "~3.2.0"
6868
},
6969
"volta": {
7070
"node": "18.19.1",

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 3.1.0.
2+
* This file was generated by langium-cli 3.2.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 3.1.0.
2+
* This file was generated by langium-cli 3.2.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 3.1.0.
2+
* This file was generated by langium-cli 3.2.0.
33
* DO NOT EDIT MANUALLY!
44
******************************************************************************/
55

package-lock.json

+25-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/generator-langium/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-langium",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "Yeoman generator for Langium - the language engineering tool",
55
"homepage": "https://langium.org",
66
"engines": {

packages/generator-langium/templates/core/.package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
"langium:watch": "langium generate --watch"
1616
},
1717
"dependencies": {
18-
"langium": "~3.1.2"
18+
"langium": "~3.2.0"
1919
},
2020
"devDependencies": {
2121
"@types/node": "^18.0.0",
2222
"@typescript-eslint/parser": "~7.3.1",
2323
"@typescript-eslint/eslint-plugin": "~7.3.1",
2424
"eslint": "~8.57.0",
25-
"langium-cli": "~3.1.0",
25+
"langium-cli": "~3.2.0",
2626
"typescript": "~5.1.6"
2727
},
2828
"volta": {

packages/langium-cli/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log of `langium-cli`
22

3+
## v3.2.0 (Sep. 2024)
4+
5+
Fixed an `undefined` error on certain regexes in the monarch generator ([#1594](https://github.com/eclipse-langium/langium/pull/1594)).
6+
37
## v3.1.0 (Jun. 2024)
48

59
Fixed string escaping for generated code ([#1537](https://github.com/eclipse-langium/langium/pull/1537), [#1514](https://github.com/eclipse-langium/langium/pull/1514)).

0 commit comments

Comments
 (0)