From 4b009e3098dcd4978ab11ca3ea2c1bcbc1a227d2 Mon Sep 17 00:00:00 2001 From: Benjamin Lichtman Date: Wed, 3 Apr 2019 15:12:03 -0700 Subject: [PATCH] Update versions and LKG for 3.4.2 (#30741) * Update versions to 3.4.2 * LKG update for 3.4.2 --- lib/tsc.js | 2 +- lib/tsserver.js | 2 +- lib/tsserverlibrary.js | 2 +- lib/typescript.js | 2 +- lib/typescriptServices.js | 2 +- lib/typingsInstaller.js | 2 +- package.json | 2 +- src/compiler/core.ts | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/tsc.js b/lib/tsc.js index 202882d5885da..01f969133ef68 100644 --- a/lib/tsc.js +++ b/lib/tsc.js @@ -60,7 +60,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook var ts; (function (ts) { ts.versionMajorMinor = "3.4"; - ts.version = ts.versionMajorMinor + ".1"; + ts.version = ts.versionMajorMinor + ".2"; })(ts || (ts = {})); (function (ts) { ts.emptyArray = []; diff --git a/lib/tsserver.js b/lib/tsserver.js index 86ff8c078910d..3f0dbdb85aab9 100644 --- a/lib/tsserver.js +++ b/lib/tsserver.js @@ -85,7 +85,7 @@ var ts; // If changing the text in this section, be sure to test `configureNightly` too. ts.versionMajorMinor = "3.4"; /** The version of the TypeScript compiler release */ - ts.version = ts.versionMajorMinor + ".1"; + ts.version = ts.versionMajorMinor + ".2"; })(ts || (ts = {})); (function (ts) { /* @internal */ diff --git a/lib/tsserverlibrary.js b/lib/tsserverlibrary.js index 79f6dcec55b08..28b86d2daabdf 100644 --- a/lib/tsserverlibrary.js +++ b/lib/tsserverlibrary.js @@ -84,7 +84,7 @@ var ts; // If changing the text in this section, be sure to test `configureNightly` too. ts.versionMajorMinor = "3.4"; /** The version of the TypeScript compiler release */ - ts.version = ts.versionMajorMinor + ".1"; + ts.version = ts.versionMajorMinor + ".2"; })(ts || (ts = {})); (function (ts) { /* @internal */ diff --git a/lib/typescript.js b/lib/typescript.js index af0dc4daef56d..4d889bf8e8994 100644 --- a/lib/typescript.js +++ b/lib/typescript.js @@ -75,7 +75,7 @@ var ts; // If changing the text in this section, be sure to test `configureNightly` too. ts.versionMajorMinor = "3.4"; /** The version of the TypeScript compiler release */ - ts.version = ts.versionMajorMinor + ".1"; + ts.version = ts.versionMajorMinor + ".2"; })(ts || (ts = {})); (function (ts) { /* @internal */ diff --git a/lib/typescriptServices.js b/lib/typescriptServices.js index 835a9569babcb..189e52ff8a578 100644 --- a/lib/typescriptServices.js +++ b/lib/typescriptServices.js @@ -75,7 +75,7 @@ var ts; // If changing the text in this section, be sure to test `configureNightly` too. ts.versionMajorMinor = "3.4"; /** The version of the TypeScript compiler release */ - ts.version = ts.versionMajorMinor + ".1"; + ts.version = ts.versionMajorMinor + ".2"; })(ts || (ts = {})); (function (ts) { /* @internal */ diff --git a/lib/typingsInstaller.js b/lib/typingsInstaller.js index 2a959a8a4126e..14fd15b6436bf 100644 --- a/lib/typingsInstaller.js +++ b/lib/typingsInstaller.js @@ -76,7 +76,7 @@ var ts; // If changing the text in this section, be sure to test `configureNightly` too. ts.versionMajorMinor = "3.4"; /** The version of the TypeScript compiler release */ - ts.version = ts.versionMajorMinor + ".1"; + ts.version = ts.versionMajorMinor + ".2"; })(ts || (ts = {})); (function (ts) { /* @internal */ diff --git a/package.json b/package.json index 5f990f4de94b0..ada6ff12bd3a5 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "typescript", "author": "Microsoft Corp.", "homepage": "https://www.typescriptlang.org/", - "version": "3.4.1", + "version": "3.4.2", "license": "Apache-2.0", "description": "TypeScript is a language for application scale JavaScript development", "keywords": [ diff --git a/src/compiler/core.ts b/src/compiler/core.ts index 32419eef495a0..79d4732191afb 100644 --- a/src/compiler/core.ts +++ b/src/compiler/core.ts @@ -3,7 +3,7 @@ namespace ts { // If changing the text in this section, be sure to test `configureNightly` too. export const versionMajorMinor = "3.4"; /** The version of the TypeScript compiler release */ - export const version = `${versionMajorMinor}.1`; + export const version = `${versionMajorMinor}.2`; } namespace ts {