Skip to content

Commit e7fd303

Browse files
Bump version to 4.4.1-rc and LKG
1 parent eb1e566 commit e7fd303

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

lib/tsc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
6969
var ts;
7070
(function (ts) {
7171
ts.versionMajorMinor = "4.4";
72-
ts.version = ts.versionMajorMinor + ".0-beta";
72+
ts.version = "4.4.1-rc";
7373
var NativeCollections;
7474
(function (NativeCollections) {
7575
function tryGetNativeMap() {

lib/tsserver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ var ts;
100100
// The following is baselined as a literal template type without intervention
101101
/** The version of the TypeScript compiler release */
102102
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
103-
ts.version = ts.versionMajorMinor + ".0-beta";
103+
ts.version = "4.4.1-rc";
104104
/* @internal */
105105
var Comparison;
106106
(function (Comparison) {

lib/tsserverlibrary.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ var ts;
294294
// The following is baselined as a literal template type without intervention
295295
/** The version of the TypeScript compiler release */
296296
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
297-
ts.version = ts.versionMajorMinor + ".0-beta";
297+
ts.version = "4.4.1-rc";
298298
/* @internal */
299299
var Comparison;
300300
(function (Comparison) {

lib/typescript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ var ts;
294294
// The following is baselined as a literal template type without intervention
295295
/** The version of the TypeScript compiler release */
296296
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
297-
ts.version = ts.versionMajorMinor + ".0-beta";
297+
ts.version = "4.4.1-rc";
298298
/* @internal */
299299
var Comparison;
300300
(function (Comparison) {

lib/typescriptServices.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ var ts;
294294
// The following is baselined as a literal template type without intervention
295295
/** The version of the TypeScript compiler release */
296296
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
297-
ts.version = ts.versionMajorMinor + ".0-beta";
297+
ts.version = "4.4.1-rc";
298298
/* @internal */
299299
var Comparison;
300300
(function (Comparison) {

lib/typingsInstaller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ var ts;
8989
// The following is baselined as a literal template type without intervention
9090
/** The version of the TypeScript compiler release */
9191
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
92-
ts.version = ts.versionMajorMinor + ".0-beta";
92+
ts.version = "4.4.1-rc";
9393
/* @internal */
9494
var Comparison;
9595
(function (Comparison) {

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": "https://www.typescriptlang.org/",
5-
"version": "4.4.0-beta",
5+
"version": "4.4.1-rc",
66
"license": "Apache-2.0",
77
"description": "TypeScript is a language for application scale JavaScript development",
88
"keywords": [

src/compiler/corePublic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace ts {
55
// The following is baselined as a literal template type without intervention
66
/** The version of the TypeScript compiler release */
77
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
8-
export const version = `${versionMajorMinor}.0-beta`;
8+
export const version = "4.4.1-rc" as string;
99

1010
/**
1111
* Type of objects whose values are all of the same type.

0 commit comments

Comments
 (0)