Skip to content

Commit ab9ce1e

Browse files
Merge pull request microsoft#1873 from Microsoft/bumpTo1.5
Bump version to 1.5 (compiler)/0.5 (services)
2 parents a5ce3e1 + ae5c3ba commit ab9ce1e

3 files changed

Lines changed: 46 additions & 46 deletions

File tree

package.json

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
{
2-
"name": "typescript",
3-
"author": "Microsoft Corp.",
4-
"homepage": "http://typescriptlang.org/",
5-
"version": "1.4.0",
6-
"licenses": [
7-
{
8-
"type": "Apache License 2.0",
9-
"url": "https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"
10-
}
11-
],
12-
"description": "TypeScript is a language for application scale JavaScript development",
13-
"keywords": [
14-
"TypeScript",
15-
"Microsoft",
16-
"compiler",
17-
"language",
18-
"javascript"
19-
],
20-
"bugs": {
21-
"url" : "https://github.com/Microsoft/TypeScript/issues"
22-
},
23-
"repository" : {
24-
"type" : "git",
25-
"url" : "https://github.com/Microsoft/TypeScript.git"
26-
},
27-
"preferGlobal" : true,
28-
"main" : "./bin/typescriptServices.js",
29-
"bin" : {
30-
"tsc" : "./bin/tsc"
31-
},
32-
"engines" : {
33-
"node" : ">=0.8.0"
34-
},
35-
"devDependencies": {
36-
"jake" : "latest",
37-
"mocha" : "latest",
38-
"chai" : "latest",
39-
"browserify" : "latest",
40-
"istanbul": "latest",
41-
"codeclimate-test-reporter": "latest"
42-
},
43-
"scripts": {
44-
"test": "jake generate-code-coverage"
45-
}
2+
"name": "typescript",
3+
"author": "Microsoft Corp.",
4+
"homepage": "http://typescriptlang.org/",
5+
"version": "1.5.0",
6+
"licenses": [
7+
{
8+
"type": "Apache License 2.0",
9+
"url": "https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"
10+
}
11+
],
12+
"description": "TypeScript is a language for application scale JavaScript development",
13+
"keywords": [
14+
"TypeScript",
15+
"Microsoft",
16+
"compiler",
17+
"language",
18+
"javascript"
19+
],
20+
"bugs": {
21+
"url": "https://github.com/Microsoft/TypeScript/issues"
22+
},
23+
"repository": {
24+
"type": "git",
25+
"url": "https://github.com/Microsoft/TypeScript.git"
26+
},
27+
"preferGlobal": true,
28+
"main": "./bin/typescriptServices.js",
29+
"bin": {
30+
"tsc": "./bin/tsc"
31+
},
32+
"engines": {
33+
"node": ">=0.8.0"
34+
},
35+
"devDependencies": {
36+
"jake": "latest",
37+
"mocha": "latest",
38+
"chai": "latest",
39+
"browserify": "latest",
40+
"istanbul": "latest",
41+
"codeclimate-test-reporter": "latest"
42+
},
43+
"scripts": {
44+
"test": "jake generate-code-coverage"
45+
}
4646
}

src/compiler/tsc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// <reference path="commandLineParser.ts"/>
33

44
module ts {
5-
var version = "1.4.0.0";
5+
var version = "1.5.0.0";
66

77
export interface SourceFile {
88
fileWatcher: FileWatcher;

src/services/services.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/// <reference path='formatting\smartIndenter.ts' />
1010

1111
module ts {
12-
export var servicesVersion = "0.4"
12+
export var servicesVersion = "0.5"
1313

1414
export interface Node {
1515
getSourceFile(): SourceFile;

0 commit comments

Comments
 (0)