Skip to content

Commit

Permalink
Bump version to 4.9.3 and LKG.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRosenwasser committed Nov 12, 2022
1 parent 107f832 commit 93bd577
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/tsc.js
Expand Up @@ -69,7 +69,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
var ts;
(function (ts) {
ts.versionMajorMinor = "4.9";
ts.version = "".concat(ts.versionMajorMinor, ".2-rc");
ts.version = "".concat(ts.versionMajorMinor, ".3");
var NativeCollections;
(function (NativeCollections) {
var globals = typeof globalThis !== "undefined" ? globalThis :
Expand Down
2 changes: 1 addition & 1 deletion lib/tsserver.js
Expand Up @@ -109,7 +109,7 @@ var ts;
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
ts.version = "".concat(ts.versionMajorMinor, ".2-rc");
ts.version = "".concat(ts.versionMajorMinor, ".3");
/* @internal */
var Comparison;
(function (Comparison) {
Expand Down
2 changes: 1 addition & 1 deletion lib/tsserverlibrary.js
Expand Up @@ -108,7 +108,7 @@ var ts;
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
ts.version = "".concat(ts.versionMajorMinor, ".2-rc");
ts.version = "".concat(ts.versionMajorMinor, ".3");
/* @internal */
var Comparison;
(function (Comparison) {
Expand Down
2 changes: 1 addition & 1 deletion lib/typescript.js
Expand Up @@ -99,7 +99,7 @@ var ts;
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
ts.version = "".concat(ts.versionMajorMinor, ".2-rc");
ts.version = "".concat(ts.versionMajorMinor, ".3");
/* @internal */
var Comparison;
(function (Comparison) {
Expand Down
2 changes: 1 addition & 1 deletion lib/typescriptServices.js
Expand Up @@ -99,7 +99,7 @@ var ts;
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
ts.version = "".concat(ts.versionMajorMinor, ".2-rc");
ts.version = "".concat(ts.versionMajorMinor, ".3");
/* @internal */
var Comparison;
(function (Comparison) {
Expand Down
2 changes: 1 addition & 1 deletion lib/typingsInstaller.js
Expand Up @@ -89,7 +89,7 @@ var ts;
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
ts.version = "".concat(ts.versionMajorMinor, ".2-rc");
ts.version = "".concat(ts.versionMajorMinor, ".3");
/* @internal */
var Comparison;
(function (Comparison) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "typescript",
"author": "Microsoft Corp.",
"homepage": "https://www.typescriptlang.org/",
"version": "4.9.2-rc",
"version": "4.9.3",
"license": "Apache-2.0",
"description": "TypeScript is a language for application scale JavaScript development",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/corePublic.ts
Expand Up @@ -5,7 +5,7 @@ namespace ts {
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
export const version: string = `${versionMajorMinor}.2-rc`;
export const version: string = `${versionMajorMinor}.3`;

/**
* Type of objects whose values are all of the same type.
Expand Down

0 comments on commit 93bd577

Please sign in to comment.