Skip to content

Commit 0c679d4

Browse files
committed
v1.2.0
1 parent 5d9f962 commit 0c679d4

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.gitpod.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ tasks:
99
- init: |
1010
yarn
1111
command: |
12+
if [[ $NPM_TOKEN ]]; then echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc; fi
1213
yarn --cwd examples start

examples/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "sprotty-examples",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"private": "true",
55
"dependencies": {
66
"@vscode/codicons": "^0.0.33",
77
"express": "^4.18.2",
88
"inversify": "~6.0.2",
99
"reflect-metadata": "~0.1.14",
10-
"sprotty": "^1.1.0",
11-
"sprotty-elk": "^1.1.0",
12-
"sprotty-library": "^0.0.1",
10+
"sprotty": "^1.2.0",
11+
"sprotty-elk": "^1.2.0",
12+
"sprotty-library": "^1.2.0",
1313
"ws": "^8.14.2"
1414
},
1515
"devDependencies": {

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0",
2+
"version": "1.2.0",
33
"npmClient": "yarn",
44
"command": {
55
"run": {

packages/generator-sprotty/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-sprotty",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Yeoman generator for Sprotty",
55
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
66
"engines": {

packages/sprotty-elk/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sprotty-elk",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Integration of ELK graph layout algorithms in Sprotty",
55
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
66
"keywords": [
@@ -22,7 +22,7 @@
2222
},
2323
"dependencies": {
2424
"elkjs": "^0.8.2",
25-
"sprotty-protocol": "^1.1.0"
25+
"sprotty-protocol": "^1.2.0"
2626
},
2727
"optionalDependencies": {
2828
"inversify": "~6.0.2"

packages/sprotty-library/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sprotty-library",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Views and elements library for Sprotty",
55
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
66
"keywords": [
@@ -18,9 +18,8 @@
1818
"name": "Eclipse Sprotty"
1919
},
2020
"dependencies": {
21-
"sprotty": "^1.1.0"
21+
"sprotty": "^1.2.0"
2222
},
23-
"devDependencies": {},
2423
"repository": {
2524
"type": "git",
2625
"url": "https://github.com/eclipse-sprotty/sprotty",
@@ -43,4 +42,4 @@
4342
],
4443
"main": "lib/index",
4544
"types": "lib/index"
46-
}
45+
}

packages/sprotty-protocol/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sprotty-protocol",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "TypeScript declarations for Sprotty to be used both in browser and Node.js context",
55
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
66
"keywords": [

packages/sprotty/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sprotty",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "A next-gen framework for graphical views",
55
"license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
66
"keywords": [
@@ -26,7 +26,7 @@
2626
"file-saver": "^2.0.5",
2727
"inversify": "~6.0.2",
2828
"snabbdom": "~3.5.1",
29-
"sprotty-protocol": "^1.1.0",
29+
"sprotty-protocol": "^1.2.0",
3030
"tinyqueue": "^2.0.3"
3131
},
3232
"devDependencies": {

0 commit comments

Comments
 (0)