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

Lines changed: 2 additions & 1 deletion
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

0 commit comments

Comments
 (0)