Merge pull request #1873 from Microsoft/bumpTo1.5

Bump version to 1.5 (compiler)/0.5 (services)
This commit is contained in:
Daniel Rosenwasser 2015-01-30 15:22:05 -08:00
commit ab9ce1e9e6
3 changed files with 46 additions and 46 deletions

View file

@ -1,46 +1,46 @@
{ {
"name": "typescript", "name": "typescript",
"author": "Microsoft Corp.", "author": "Microsoft Corp.",
"homepage": "http://typescriptlang.org/", "homepage": "http://typescriptlang.org/",
"version": "1.4.0", "version": "1.5.0",
"licenses": [ "licenses": [
{ {
"type": "Apache License 2.0", "type": "Apache License 2.0",
"url": "https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt" "url": "https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt"
} }
], ],
"description": "TypeScript is a language for application scale JavaScript development", "description": "TypeScript is a language for application scale JavaScript development",
"keywords": [ "keywords": [
"TypeScript", "TypeScript",
"Microsoft", "Microsoft",
"compiler", "compiler",
"language", "language",
"javascript" "javascript"
], ],
"bugs": { "bugs": {
"url" : "https://github.com/Microsoft/TypeScript/issues" "url": "https://github.com/Microsoft/TypeScript/issues"
}, },
"repository" : { "repository": {
"type" : "git", "type": "git",
"url" : "https://github.com/Microsoft/TypeScript.git" "url": "https://github.com/Microsoft/TypeScript.git"
}, },
"preferGlobal" : true, "preferGlobal": true,
"main" : "./bin/typescriptServices.js", "main": "./bin/typescriptServices.js",
"bin" : { "bin": {
"tsc" : "./bin/tsc" "tsc": "./bin/tsc"
}, },
"engines" : { "engines": {
"node" : ">=0.8.0" "node": ">=0.8.0"
}, },
"devDependencies": { "devDependencies": {
"jake" : "latest", "jake": "latest",
"mocha" : "latest", "mocha": "latest",
"chai" : "latest", "chai": "latest",
"browserify" : "latest", "browserify": "latest",
"istanbul": "latest", "istanbul": "latest",
"codeclimate-test-reporter": "latest" "codeclimate-test-reporter": "latest"
}, },
"scripts": { "scripts": {
"test": "jake generate-code-coverage" "test": "jake generate-code-coverage"
} }
} }

View file

@ -2,7 +2,7 @@
/// <reference path="commandLineParser.ts"/> /// <reference path="commandLineParser.ts"/>
module ts { module ts {
var version = "1.4.0.0"; var version = "1.5.0.0";
export interface SourceFile { export interface SourceFile {
fileWatcher: FileWatcher; fileWatcher: FileWatcher;

View file

@ -9,7 +9,7 @@
/// <reference path='formatting\smartIndenter.ts' /> /// <reference path='formatting\smartIndenter.ts' />
module ts { module ts {
export var servicesVersion = "0.4" export var servicesVersion = "0.5"
export interface Node { export interface Node {
getSourceFile(): SourceFile; getSourceFile(): SourceFile;