Skip to content

Commit

Permalink
Update versions for v1.1.0 (#936)
Browse files Browse the repository at this point in the history
  • Loading branch information
msujew authored Feb 16, 2023
1 parent 194c47d commit 01d9f1d
Show file tree
Hide file tree
Showing 30 changed files with 86 additions and 81 deletions.
11 changes: 6 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ npm link -D langium-cli
The first command above will change the dependency entry for `langium` in `package.json` from:

```json
"langium": "0.1.0"
"langium": "X.Y.Z"
```

to
Expand Down Expand Up @@ -136,12 +136,13 @@ Currently the process of releasing a new version of Langium is done manually one
6. `packages/langium-vscode`
* Update version in `package.json`
* Update dependency to `langium`
* `npm install -g vsce`
* `vsce publish -p <token> --yarn` (the last argument is due to an npm bug)
* `npm i -g ovsx`
* `ovsx publish -p <token> --yarn`
* `npm install -g @vscode/vsce ovsx`
* `vsce package`
* `vsce publish -i langium-vscode-<version>.vsix -p <token>`
* `ovsx publish langium-vscode-<version>.vsix -p <token>`
7. `examples/*`
* Update dependency to `langium` and dev-dependency to `langium-cli`
* `npm run publish:latest`
8. `npm install` again in the repository root to update `package-lock.json`
9. Commit, tag and push your changes
10. Create a GitHub release from the new tag
Expand Down
6 changes: 3 additions & 3 deletions examples/arithmetics/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "langium-arithmetics-dsl",
"displayName": "Arithmetics DSL",
"version": "1.0.0",
"version": "1.1.0",
"description": "Example language built with Langium",
"homepage": "https://langium.org",
"engines": {
Expand Down Expand Up @@ -71,12 +71,12 @@
"dependencies": {
"chalk": "~4.1.2",
"commander": "~10.0.0",
"langium": "~1.0.1",
"langium": "~1.1.0",
"vscode-languageclient": "~8.0.2",
"vscode-languageserver": "~8.0.2"
},
"devDependencies": {
"langium-cli": "~1.0.0"
"langium-cli": "~1.1.0"
},
"volta": {
"node": "16.19.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/arithmetics/src/language-server/generated/ast.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* This file was generated by langium-cli 1.0.0.
* This file was generated by langium-cli 1.1.0.
* DO NOT EDIT MANUALLY!
******************************************************************************/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* This file was generated by langium-cli 1.0.0.
* This file was generated by langium-cli 1.1.0.
* DO NOT EDIT MANUALLY!
******************************************************************************/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* This file was generated by langium-cli 1.0.0.
* This file was generated by langium-cli 1.1.0.
* DO NOT EDIT MANUALLY!
******************************************************************************/

Expand Down
6 changes: 3 additions & 3 deletions examples/domainmodel/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "langium-domainmodel-dsl",
"displayName": "Domain Model DSL",
"version": "1.0.0",
"version": "1.1.0",
"description": "Example language built with Langium",
"homepage": "https://langium.org",
"engines": {
Expand Down Expand Up @@ -60,13 +60,13 @@
"dependencies": {
"chalk": "~4.1.2",
"commander": "~10.0.0",
"langium": "~1.0.1",
"langium": "~1.1.0",
"lodash": "~4.17.21",
"vscode-languageclient": "~8.0.2",
"vscode-languageserver": "~8.0.2"
},
"devDependencies": {
"langium-cli": "~1.0.0"
"langium-cli": "~1.1.0"
},
"volta": {
"node": "16.19.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/domainmodel/src/language-server/generated/ast.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* This file was generated by langium-cli 1.0.0.
* This file was generated by langium-cli 1.1.0.
* DO NOT EDIT MANUALLY!
******************************************************************************/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* This file was generated by langium-cli 1.0.0.
* This file was generated by langium-cli 1.1.0.
* DO NOT EDIT MANUALLY!
******************************************************************************/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* This file was generated by langium-cli 1.0.0.
* This file was generated by langium-cli 1.1.0.
* DO NOT EDIT MANUALLY!
******************************************************************************/

Expand Down
6 changes: 3 additions & 3 deletions examples/requirements/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "langium-requirements-dsl",
"displayName": "Requirements DSL",
"description": "A demo showing how to combine two DSLs",
"version": "1.0.0",
"version": "1.1.0",
"engines": {
"vscode": "^1.67.0"
},
Expand Down Expand Up @@ -72,13 +72,13 @@
"dependencies": {
"chalk": "~4.1.2",
"commander": "~10.0.0",
"langium": "~1.0.1",
"langium": "~1.1.0",
"lodash": "~4.17.21",
"vscode-languageclient": "~8.0.2",
"vscode-languageserver": "~8.0.2"
},
"devDependencies": {
"langium-cli": "~1.0.0"
"langium-cli": "~1.1.0"
},
"volta": {
"node": "16.19.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/requirements/src/language-server/generated/ast.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* This file was generated by langium-cli 1.0.0.
* This file was generated by langium-cli 1.1.0.
* DO NOT EDIT MANUALLY!
******************************************************************************/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* This file was generated by langium-cli 1.0.0.
* This file was generated by langium-cli 1.1.0.
* DO NOT EDIT MANUALLY!
******************************************************************************/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* This file was generated by langium-cli 1.0.0.
* This file was generated by langium-cli 1.1.0.
* DO NOT EDIT MANUALLY!
******************************************************************************/

Expand Down
6 changes: 3 additions & 3 deletions examples/statemachine/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "langium-statemachine-dsl",
"displayName": "State Machine DSL",
"version": "1.0.0",
"version": "1.1.0",
"description": "Example language built with Langium",
"homepage": "https://langium.org",
"engines": {
Expand Down Expand Up @@ -61,13 +61,13 @@
"dependencies": {
"chalk": "~4.1.2",
"commander": "~10.0.0",
"langium": "~1.0.1",
"langium": "~1.1.0",
"lodash": "^4.17.21",
"vscode-languageclient": "~8.0.2",
"vscode-languageserver": "~8.0.2"
},
"devDependencies": {
"langium-cli": "~1.0.0"
"langium-cli": "~1.1.0"
},
"volta": {
"node": "16.19.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/statemachine/src/language-server/generated/ast.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* This file was generated by langium-cli 1.0.0.
* This file was generated by langium-cli 1.1.0.
* DO NOT EDIT MANUALLY!
******************************************************************************/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* This file was generated by langium-cli 1.0.0.
* This file was generated by langium-cli 1.1.0.
* DO NOT EDIT MANUALLY!
******************************************************************************/

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************************************************************
* This file was generated by langium-cli 1.0.0.
* This file was generated by langium-cli 1.1.0.
* DO NOT EDIT MANUALLY!
******************************************************************************/

Expand Down
Loading

0 comments on commit 01d9f1d

Please sign in to comment.