Skip to content

Commit

Permalink
publish v0.1.1
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Kosiakov <anton.kosyakov@typefox.io>
  • Loading branch information
akosyakov committed Jul 31, 2017
1 parent 504c0dc commit 515e23d
Show file tree
Hide file tree
Showing 18 changed files with 80 additions and 78 deletions.
6 changes: 4 additions & 2 deletions doc/Publishing.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ This command will rebuild all packages, test them, publish to npm and bump versi

## Tagging the published version

git add *
git commit -m "publish v${published.version}" -s
git push origin HEAD
git tag v${published.version}
git tag v${published.version} -s
git push origin v${published.version}

The version picked during package publishing should be used as `${published.version}`.
Expand All @@ -31,7 +32,8 @@ First two commands commit updated versions, last two create a new tag and transf

For example, if you picked `0.1.0` as a version then you should run:

git add *
git commit -m "publish v0.1.0" -s
git push origin HEAD
git tag v0.1.0
git tag v0.1.0 -s
git push origin v0.1.0
28 changes: 14 additions & 14 deletions examples/browser/theia.package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"private": true,
"name": "@theia/example-browser",
"version": "0.1.0",
"version": "0.1.1",
"dependencies": {
"@theia/core": "^0.1.0",
"@theia/filesystem": "^0.1.0",
"@theia/workspace": "^0.1.0",
"@theia/preferences": "^0.1.0",
"@theia/navigator": "^0.1.0",
"@theia/terminal": "^0.1.0",
"@theia/editor": "^0.1.0",
"@theia/languages": "^0.1.0",
"@theia/monaco": "^0.1.0",
"@theia/java": "^0.1.0",
"@theia/python": "^0.1.0",
"@theia/cpp": "^0.1.0"
"@theia/core": "^0.1.1",
"@theia/filesystem": "^0.1.1",
"@theia/workspace": "^0.1.1",
"@theia/preferences": "^0.1.1",
"@theia/navigator": "^0.1.1",
"@theia/terminal": "^0.1.1",
"@theia/editor": "^0.1.1",
"@theia/languages": "^0.1.1",
"@theia/monaco": "^0.1.1",
"@theia/java": "^0.1.1",
"@theia/python": "^0.1.1",
"@theia/cpp": "^0.1.1"
},
"scripts": {
"clean": "rimraf lib && rimraf errorShots",
Expand All @@ -33,4 +33,4 @@
"wdio-spec-reporter": "^0.1.0",
"webdriverio": "^4.6.2"
}
}
}
28 changes: 14 additions & 14 deletions examples/electron/theia.package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"private": true,
"name": "@theia/example-electron",
"version": "0.1.0",
"version": "0.1.1",
"dependencies": {
"@theia/core": "^0.1.0",
"@theia/cpp": "^0.1.0",
"@theia/editor": "^0.1.0",
"@theia/filesystem": "^0.1.0",
"@theia/java": "^0.1.0",
"@theia/languages": "^0.1.0",
"@theia/monaco": "^0.1.0",
"@theia/navigator": "^0.1.0",
"@theia/preferences": "^0.1.0",
"@theia/python": "^0.1.0",
"@theia/terminal": "^0.1.0",
"@theia/workspace": "^0.1.0"
"@theia/core": "^0.1.1",
"@theia/cpp": "^0.1.1",
"@theia/editor": "^0.1.1",
"@theia/filesystem": "^0.1.1",
"@theia/java": "^0.1.1",
"@theia/languages": "^0.1.1",
"@theia/monaco": "^0.1.1",
"@theia/navigator": "^0.1.1",
"@theia/preferences": "^0.1.1",
"@theia/python": "^0.1.1",
"@theia/terminal": "^0.1.1",
"@theia/workspace": "^0.1.1"
},
"scripts": {
"test": "electron-mocha --timeout 60000 --require ts-node/register test/**/*.espec.ts",
Expand All @@ -34,4 +34,4 @@
"webdriverio": "^4.6.2",
"electron-mocha": "^3.5.0"
}
}
}
2 changes: 1 addition & 1 deletion generator-theia/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-theia",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia Generator",
"license": "Apache-2.0",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"packages/*",
"examples/*"
],
"version": "0.1.0"
"version": "0.1.1"
}
4 changes: 2 additions & 2 deletions packages/core/extension.package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theia/core",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia is a cloud & desktop IDE framework implemented in TypeScript.",
"main": "lib/common/index.js",
"typings": "lib/common/index.d.ts",
Expand Down Expand Up @@ -38,4 +38,4 @@
"frontendElectron": "lib/electron-browser/clipboard/electron-clipboard-module"
}
]
}
}
6 changes: 3 additions & 3 deletions packages/cpp/extension.package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@theia/cpp",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia - Cpp Extension",
"dependencies": {
"@theia/core": "^0.1.0",
"@theia/languages": "^0.1.0"
"@theia/core": "^0.1.1",
"@theia/languages": "^0.1.1"
},
"publishConfig": {
"access": "public"
Expand Down
6 changes: 3 additions & 3 deletions packages/editor/extension.package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@theia/editor",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia - Editor Extension",
"dependencies": {
"@theia/core": "^0.1.0",
"@theia/preferences": "^0.1.0",
"@theia/core": "^0.1.1",
"@theia/preferences": "^0.1.1",
"vscode-languageserver-types": "^3.3.0"
},
"publishConfig": {
Expand Down
6 changes: 3 additions & 3 deletions packages/filesystem/extension.package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@theia/filesystem",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia - FileSystem Extension",
"dependencies": {
"@theia/core": "^0.1.0",
"@theia/preferences-api": "^0.1.0",
"@theia/core": "^0.1.1",
"@theia/preferences-api": "^0.1.1",
"@types/chokidar": "^1.7.0",
"@types/fs-extra": "^3.0.3",
"@types/touch": "0.0.1",
Expand Down
10 changes: 5 additions & 5 deletions packages/java/extension.package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@theia/java",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia - Java Extension",
"dependencies": {
"@theia/core": "^0.1.0",
"@theia/languages": "^0.1.0",
"@theia/editor": "^0.1.0",
"@theia/monaco": "^0.1.0",
"@theia/core": "^0.1.1",
"@theia/languages": "^0.1.1",
"@theia/editor": "^0.1.1",
"@theia/monaco": "^0.1.1",
"@types/glob": "^5.0.30",
"glob": "^7.1.2"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/languages/extension.package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@theia/languages",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia - Languages Extension",
"dependencies": {
"@theia/core": "^0.1.0",
"@theia/core": "^0.1.1",
"vscode-base-languageclient": "^0.0.1-alpha.2",
"vscode-languageserver": "^3.3.0"
},
Expand Down
14 changes: 7 additions & 7 deletions packages/monaco/extension.package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@theia/monaco",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia - Monaco Extension",
"dependencies": {
"@theia/core": "^0.1.0",
"@theia/filesystem": "^0.1.0",
"@theia/preferences": "^0.1.0",
"@theia/workspace": "^0.1.0",
"@theia/languages": "^0.1.0",
"@theia/editor": "^0.1.0",
"@theia/core": "^0.1.1",
"@theia/filesystem": "^0.1.1",
"@theia/preferences": "^0.1.1",
"@theia/workspace": "^0.1.1",
"@theia/languages": "^0.1.1",
"@theia/editor": "^0.1.1",
"monaco-css": "^1.3.2",
"monaco-html": "^1.3.1",
"monaco-json": "^1.3.1",
Expand Down
8 changes: 4 additions & 4 deletions packages/navigator/extension.package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@theia/navigator",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia - Navigator Extension",
"dependencies": {
"@theia/core": "^0.1.0",
"@theia/filesystem": "^0.1.0",
"@theia/workspace": "^0.1.0"
"@theia/core": "^0.1.1",
"@theia/filesystem": "^0.1.1",
"@theia/workspace": "^0.1.1"
},
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions packages/preferences-api/extension.package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@theia/preferences-api",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia - Preferences API",
"main": "lib/common/index.js",
"typings": "lib/common/index.d.ts",
"dependencies": {
"@theia/core": "^0.1.0"
"@theia/core": "^0.1.1"
},
"publishConfig": {
"access": "public"
Expand Down
10 changes: 5 additions & 5 deletions packages/preferences/extension.package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@theia/preferences",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia - Preferences Extension",
"dependencies": {
"@theia/core": "^0.1.0",
"@theia/preferences-api": "^0.1.0",
"@theia/filesystem": "^0.1.0",
"@theia/workspace": "^0.1.0",
"@theia/core": "^0.1.1",
"@theia/preferences-api": "^0.1.1",
"@theia/filesystem": "^0.1.1",
"@theia/workspace": "^0.1.1",
"jsonc-parser": "^1.0.0"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/python/extension.package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@theia/python",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia - Python Extension",
"dependencies": {
"@theia/core": "^0.1.0",
"@theia/languages": "^0.1.0"
"@theia/core": "^0.1.1",
"@theia/languages": "^0.1.1"
},
"publishConfig": {
"access": "public"
Expand Down
8 changes: 4 additions & 4 deletions packages/terminal/extension.package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@theia/terminal",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia - Terminal Extension",
"dependencies": {
"@theia/core": "^0.1.0",
"@theia/filesystem": "^0.1.0",
"@theia/workspace": "^0.1.0",
"@theia/core": "^0.1.1",
"@theia/filesystem": "^0.1.1",
"@theia/workspace": "^0.1.1",
"@types/xterm": "^2.0.3",
"node-pty": "^0.6.10",
"xterm": "^2.8.1"
Expand Down
6 changes: 3 additions & 3 deletions packages/workspace/extension.package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@theia/workspace",
"version": "0.1.0",
"version": "0.1.1",
"description": "Theia - Workspace Extension",
"dependencies": {
"@theia/core": "^0.1.0",
"@theia/filesystem": "^0.1.0"
"@theia/core": "^0.1.1",
"@theia/filesystem": "^0.1.1"
},
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 515e23d

Please sign in to comment.