Skip to content

Commit c388222

Browse files
author
TypeScript Bot
committed
Bump version to 3.9.5 and LKG
1 parent e0d620d commit c388222

8 files changed

+8
-8
lines changed

lib/tsc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
6767
var ts;
6868
(function (ts) {
6969
ts.versionMajorMinor = "3.9";
70-
ts.version = "3.9.4";
70+
ts.version = "3.9.5";
7171
function tryGetNativeMap() {
7272
return typeof Map !== "undefined" && "entries" in Map.prototype ? Map : undefined;
7373
}

lib/tsserver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ var ts;
9494
// If changing the text in this section, be sure to test `configurePrerelease` too.
9595
ts.versionMajorMinor = "3.9";
9696
/** The version of the TypeScript compiler release */
97-
ts.version = "3.9.4";
97+
ts.version = "3.9.5";
9898
/**
9999
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
100100
*/

lib/tsserverlibrary.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ var ts;
244244
// If changing the text in this section, be sure to test `configurePrerelease` too.
245245
ts.versionMajorMinor = "3.9";
246246
/** The version of the TypeScript compiler release */
247-
ts.version = "3.9.4";
247+
ts.version = "3.9.5";
248248
/**
249249
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
250250
*/

lib/typescript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ var ts;
244244
// If changing the text in this section, be sure to test `configurePrerelease` too.
245245
ts.versionMajorMinor = "3.9";
246246
/** The version of the TypeScript compiler release */
247-
ts.version = "3.9.4";
247+
ts.version = "3.9.5";
248248
/**
249249
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
250250
*/

lib/typescriptServices.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ var ts;
244244
// If changing the text in this section, be sure to test `configurePrerelease` too.
245245
ts.versionMajorMinor = "3.9";
246246
/** The version of the TypeScript compiler release */
247-
ts.version = "3.9.4";
247+
ts.version = "3.9.5";
248248
/**
249249
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
250250
*/

lib/typingsInstaller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ var ts;
8383
// If changing the text in this section, be sure to test `configurePrerelease` too.
8484
ts.versionMajorMinor = "3.9";
8585
/** The version of the TypeScript compiler release */
86-
ts.version = "3.9.4";
86+
ts.version = "3.9.5";
8787
/**
8888
* Returns the native Map implementation if it is available and compatible (i.e. supports iteration).
8989
*/

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": "3.9.4",
5+
"version": "3.9.5",
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
@@ -3,7 +3,7 @@ namespace ts {
33
// If changing the text in this section, be sure to test `configurePrerelease` too.
44
export const versionMajorMinor = "3.9";
55
/** The version of the TypeScript compiler release */
6-
export const version = "3.9.4" as string;
6+
export const version = "3.9.5" as string;
77

88
/**
99
* Type of objects whose values are all of the same type.

0 commit comments

Comments
 (0)