Skip to content

Commit 01d9f1d

Browse files
authored
Update versions for v1.1.0 (#936)
1 parent 194c47d commit 01d9f1d

File tree

30 files changed

+86
-81
lines changed

30 files changed

+86
-81
lines changed

CONTRIBUTING.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ npm link -D langium-cli
6464
The first command above will change the dependency entry for `langium` in `package.json` from:
6565

6666
```json
67-
"langium": "0.1.0"
67+
"langium": "X.Y.Z"
6868
```
6969

7070
to
@@ -136,12 +136,13 @@ Currently the process of releasing a new version of Langium is done manually one
136136
6. `packages/langium-vscode`
137137
* Update version in `package.json`
138138
* Update dependency to `langium`
139-
* `npm install -g vsce`
140-
* `vsce publish -p <token> --yarn` (the last argument is due to an npm bug)
141-
* `npm i -g ovsx`
142-
* `ovsx publish -p <token> --yarn`
139+
* `npm install -g @vscode/vsce ovsx`
140+
* `vsce package`
141+
* `vsce publish -i langium-vscode-<version>.vsix -p <token>`
142+
* `ovsx publish langium-vscode-<version>.vsix -p <token>`
143143
7. `examples/*`
144144
* Update dependency to `langium` and dev-dependency to `langium-cli`
145+
* `npm run publish:latest`
145146
8. `npm install` again in the repository root to update `package-lock.json`
146147
9. Commit, tag and push your changes
147148
10. Create a GitHub release from the new tag

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": "1.0.0",
4+
"version": "1.1.0",
55
"description": "Example language built with Langium",
66
"homepage": "https://langium.org",
77
"engines": {
@@ -71,12 +71,12 @@
7171
"dependencies": {
7272
"chalk": "~4.1.2",
7373
"commander": "~10.0.0",
74-
"langium": "~1.0.1",
74+
"langium": "~1.1.0",
7575
"vscode-languageclient": "~8.0.2",
7676
"vscode-languageserver": "~8.0.2"
7777
},
7878
"devDependencies": {
79-
"langium-cli": "~1.0.0"
79+
"langium-cli": "~1.1.0"
8080
},
8181
"volta": {
8282
"node": "16.19.0",

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.0.0.
2+
* This file was generated by langium-cli 1.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 1.0.0.
2+
* This file was generated by langium-cli 1.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 1.0.0.
2+
* This file was generated by langium-cli 1.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": "1.0.0",
4+
"version": "1.1.0",
55
"description": "Example language built with Langium",
66
"homepage": "https://langium.org",
77
"engines": {
@@ -60,13 +60,13 @@
6060
"dependencies": {
6161
"chalk": "~4.1.2",
6262
"commander": "~10.0.0",
63-
"langium": "~1.0.1",
63+
"langium": "~1.1.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.0.0"
69+
"langium-cli": "~1.1.0"
7070
},
7171
"volta": {
7272
"node": "16.19.0",

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.0.0.
2+
* This file was generated by langium-cli 1.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 1.0.0.
2+
* This file was generated by langium-cli 1.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 1.0.0.
2+
* This file was generated by langium-cli 1.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": "1.0.0",
5+
"version": "1.1.0",
66
"engines": {
77
"vscode": "^1.67.0"
88
},
@@ -72,13 +72,13 @@
7272
"dependencies": {
7373
"chalk": "~4.1.2",
7474
"commander": "~10.0.0",
75-
"langium": "~1.0.1",
75+
"langium": "~1.1.0",
7676
"lodash": "~4.17.21",
7777
"vscode-languageclient": "~8.0.2",
7878
"vscode-languageserver": "~8.0.2"
7979
},
8080
"devDependencies": {
81-
"langium-cli": "~1.0.0"
81+
"langium-cli": "~1.1.0"
8282
},
8383
"volta": {
8484
"node": "16.19.0",

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.0.0.
2+
* This file was generated by langium-cli 1.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 1.0.0.
2+
* This file was generated by langium-cli 1.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 1.0.0.
2+
* This file was generated by langium-cli 1.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": "1.0.0",
4+
"version": "1.1.0",
55
"description": "Example language built with Langium",
66
"homepage": "https://langium.org",
77
"engines": {
@@ -61,13 +61,13 @@
6161
"dependencies": {
6262
"chalk": "~4.1.2",
6363
"commander": "~10.0.0",
64-
"langium": "~1.0.1",
64+
"langium": "~1.1.0",
6565
"lodash": "^4.17.21",
6666
"vscode-languageclient": "~8.0.2",
6767
"vscode-languageserver": "~8.0.2"
6868
},
6969
"devDependencies": {
70-
"langium-cli": "~1.0.0"
70+
"langium-cli": "~1.1.0"
7171
},
7272
"volta": {
7373
"node": "16.19.0",

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

0 commit comments

Comments
 (0)