Skip to content

Commit eeb0707

Browse files
authored
Update Langium to 3.1.0 (#1551)
1 parent 9ac42d9 commit eeb0707

File tree

32 files changed

+102
-68
lines changed

32 files changed

+102
-68
lines changed

.github/workflows/publish.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,11 @@ jobs:
4848
npm run publish:latest --provenance --workspace=langium-statemachine-dsl
4949
- name: Publish VSCode Extension
5050
shell: bash
51+
# Add this line to the publishing once we have a valid VSCE token available again
52+
# vsce publish -i langium-vscode-$PACKAGE_VERSION.vsix -p ${{ secrets.VSCE_TOKEN }}
5153
run: |
5254
npm install -g @vscode/vsce ovsx
5355
cd packages/langium-vscode
5456
PACKAGE_VERSION=`npm pkg get version --workspaces=false | tr -d \"`
5557
vsce package
56-
vsce publish -i langium-vscode-$PACKAGE_VERSION.vsix -p ${{ secrets.VSCE_TOKEN }}
5758
ovsx publish langium-vscode-$PACKAGE_VERSION.vsix -p ${{ secrets.OVSX_TOKEN }}

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.1.0](https://github.com/eclipse-langium/langium/milestone/12?closed=1)
1213
* [v3.0.0](https://github.com/eclipse-langium/langium/milestone/11?closed=1)
1314
* [v2.1.0](https://github.com/eclipse-langium/langium/milestone/10?closed=1)
1415
* [v2.0.0](https://github.com/eclipse-langium/langium/milestone/9?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.0.0",
4+
"version": "3.1.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.0.0",
72+
"langium": "~3.1.0",
7373
"vscode-languageclient": "~9.0.1",
7474
"vscode-languageserver": "~9.0.1"
7575
},
7676
"devDependencies": {
77-
"langium-cli": "~3.0.3"
77+
"langium-cli": "~3.1.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.0.3.
2+
* This file was generated by langium-cli 3.1.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.0.3.
2+
* This file was generated by langium-cli 3.1.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.0.3.
2+
* This file was generated by langium-cli 3.1.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.0.0",
4+
"version": "3.1.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.0.0",
63+
"langium": "~3.1.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.0.3"
69+
"langium-cli": "~3.1.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.0.3.
2+
* This file was generated by langium-cli 3.1.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.0.3.
2+
* This file was generated by langium-cli 3.1.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.0.3.
2+
* This file was generated by langium-cli 3.1.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.0.0",
5+
"version": "3.1.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.0.0",
74+
"langium": "~3.1.0",
7575
"vscode-languageclient": "~9.0.1",
7676
"vscode-languageserver": "~9.0.1"
7777
},
7878
"devDependencies": {
79-
"langium-cli": "~3.0.3"
79+
"langium-cli": "~3.1.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.0.3.
2+
* This file was generated by langium-cli 3.1.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.0.3.
2+
* This file was generated by langium-cli 3.1.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.0.3.
2+
* This file was generated by langium-cli 3.1.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.0.0",
4+
"version": "3.1.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.0.0",
62+
"langium": "~3.1.0",
6363
"vscode-languageclient": "~9.0.1",
6464
"vscode-languageserver": "~9.0.1"
6565
},
6666
"devDependencies": {
67-
"langium-cli": "~3.0.3"
67+
"langium-cli": "~3.1.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.0.3.
2+
* This file was generated by langium-cli 3.1.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.0.3.
2+
* This file was generated by langium-cli 3.1.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.0.3.
2+
* This file was generated by langium-cli 3.1.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.0.0",
3+
"version": "3.1.0",
44
"description": "Yeoman generator for Langium - the language engineering tool",
55
"homepage": "https://langium.org",
66
"engines": {

0 commit comments

Comments
 (0)