Skip to content

Commit 4b009e3

Browse files
Update versions and LKG for 3.4.2 (#30741)
* Update versions to 3.4.2 * LKG update for 3.4.2
1 parent 783538c commit 4b009e3

8 files changed

+8
-8
lines changed

lib/tsc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
6060
var ts;
6161
(function (ts) {
6262
ts.versionMajorMinor = "3.4";
63-
ts.version = ts.versionMajorMinor + ".1";
63+
ts.version = ts.versionMajorMinor + ".2";
6464
})(ts || (ts = {}));
6565
(function (ts) {
6666
ts.emptyArray = [];

lib/tsserver.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ var ts;
8585
// If changing the text in this section, be sure to test `configureNightly` too.
8686
ts.versionMajorMinor = "3.4";
8787
/** The version of the TypeScript compiler release */
88-
ts.version = ts.versionMajorMinor + ".1";
88+
ts.version = ts.versionMajorMinor + ".2";
8989
})(ts || (ts = {}));
9090
(function (ts) {
9191
/* @internal */

lib/tsserverlibrary.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ var ts;
8484
// If changing the text in this section, be sure to test `configureNightly` too.
8585
ts.versionMajorMinor = "3.4";
8686
/** The version of the TypeScript compiler release */
87-
ts.version = ts.versionMajorMinor + ".1";
87+
ts.version = ts.versionMajorMinor + ".2";
8888
})(ts || (ts = {}));
8989
(function (ts) {
9090
/* @internal */

lib/typescript.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ var ts;
7575
// If changing the text in this section, be sure to test `configureNightly` too.
7676
ts.versionMajorMinor = "3.4";
7777
/** The version of the TypeScript compiler release */
78-
ts.version = ts.versionMajorMinor + ".1";
78+
ts.version = ts.versionMajorMinor + ".2";
7979
})(ts || (ts = {}));
8080
(function (ts) {
8181
/* @internal */

lib/typescriptServices.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ var ts;
7575
// If changing the text in this section, be sure to test `configureNightly` too.
7676
ts.versionMajorMinor = "3.4";
7777
/** The version of the TypeScript compiler release */
78-
ts.version = ts.versionMajorMinor + ".1";
78+
ts.version = ts.versionMajorMinor + ".2";
7979
})(ts || (ts = {}));
8080
(function (ts) {
8181
/* @internal */

lib/typingsInstaller.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ var ts;
7676
// If changing the text in this section, be sure to test `configureNightly` too.
7777
ts.versionMajorMinor = "3.4";
7878
/** The version of the TypeScript compiler release */
79-
ts.version = ts.versionMajorMinor + ".1";
79+
ts.version = ts.versionMajorMinor + ".2";
8080
})(ts || (ts = {}));
8181
(function (ts) {
8282
/* @internal */

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "typescript",
33
"author": "Microsoft Corp.",
44
"homepage": "https://www.typescriptlang.org/",
5-
"version": "3.4.1",
5+
"version": "3.4.2",
66
"license": "Apache-2.0",
77
"description": "TypeScript is a language for application scale JavaScript development",
88
"keywords": [

src/compiler/core.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace ts {
33
// If changing the text in this section, be sure to test `configureNightly` too.
44
export const versionMajorMinor = "3.4";
55
/** The version of the TypeScript compiler release */
6-
export const version = `${versionMajorMinor}.1`;
6+
export const version = `${versionMajorMinor}.2`;
77
}
88

99
namespace ts {

0 commit comments

Comments
 (0)