Skip to content

Commit f67f1f7

Browse files
committed
Update version to 2.0.0
1 parent cc1226c commit f67f1f7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "typescript",
33
"author": "Microsoft Corp.",
44
"homepage": "http://typescriptlang.org/",
5-
"version": "1.9.0",
5+
"version": "2.0.0",
66
"license": "Apache-2.0",
77
"description": "TypeScript is a language for application scale JavaScript development",
88
"keywords": [

scripts/configureNightly.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function getNightlyVersionString(versionString: string): string {
6767
const now = new Date();
6868
const timeStr = now.toISOString().replace(/:|T|\.|-/g, "").slice(0, 8);
6969

70-
return `${versionString}-dev.${timeStr}-1.0`;
70+
return `${versionString}-dev.${timeStr}`;
7171
}
7272

7373
main();

src/compiler/program.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace ts {
99
/* @internal */ export let ioWriteTime = 0;
1010

1111
/** The version of the TypeScript compiler release */
12-
export const version = "1.9.0";
12+
export const version = "2.0.0";
1313

1414
const emptyArray: any[] = [];
1515

0 commit comments

Comments
 (0)