Skip to content

Commit 93bd577

Browse files
authoredNov 12, 2022
Bump version to 4.9.3 and LKG.
1 parent 107f832 commit 93bd577

8 files changed

+8
-8
lines changed
 

‎lib/tsc.js

+1-1
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.9";
72-
ts.version = "".concat(ts.versionMajorMinor, ".2-rc");
72+
ts.version = "".concat(ts.versionMajorMinor, ".3");
7373
var NativeCollections;
7474
(function (NativeCollections) {
7575
var globals = typeof globalThis !== "undefined" ? globalThis :

‎lib/tsserver.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ var ts;
109109
// The following is baselined as a literal template type without intervention
110110
/** The version of the TypeScript compiler release */
111111
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
112-
ts.version = "".concat(ts.versionMajorMinor, ".2-rc");
112+
ts.version = "".concat(ts.versionMajorMinor, ".3");
113113
/* @internal */
114114
var Comparison;
115115
(function (Comparison) {

‎lib/tsserverlibrary.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ var ts;
108108
// The following is baselined as a literal template type without intervention
109109
/** The version of the TypeScript compiler release */
110110
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
111-
ts.version = "".concat(ts.versionMajorMinor, ".2-rc");
111+
ts.version = "".concat(ts.versionMajorMinor, ".3");
112112
/* @internal */
113113
var Comparison;
114114
(function (Comparison) {

‎lib/typescript.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ var ts;
9999
// The following is baselined as a literal template type without intervention
100100
/** The version of the TypeScript compiler release */
101101
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
102-
ts.version = "".concat(ts.versionMajorMinor, ".2-rc");
102+
ts.version = "".concat(ts.versionMajorMinor, ".3");
103103
/* @internal */
104104
var Comparison;
105105
(function (Comparison) {

‎lib/typescriptServices.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ var ts;
9999
// The following is baselined as a literal template type without intervention
100100
/** The version of the TypeScript compiler release */
101101
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
102-
ts.version = "".concat(ts.versionMajorMinor, ".2-rc");
102+
ts.version = "".concat(ts.versionMajorMinor, ".3");
103103
/* @internal */
104104
var Comparison;
105105
(function (Comparison) {

‎lib/typingsInstaller.js

+1-1
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 = "".concat(ts.versionMajorMinor, ".2-rc");
92+
ts.version = "".concat(ts.versionMajorMinor, ".3");
9393
/* @internal */
9494
var Comparison;
9595
(function (Comparison) {

‎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": "4.9.2-rc",
5+
"version": "4.9.3",
66
"license": "Apache-2.0",
77
"description": "TypeScript is a language for application scale JavaScript development",
88
"keywords": [

‎src/compiler/corePublic.ts

+1-1
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: string = `${versionMajorMinor}.2-rc`;
8+
export const version: string = `${versionMajorMinor}.3`;
99

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

0 commit comments

Comments
 (0)