Skip to content
Merged

Bump 4.2 #41377

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "typescript",
"author": "Microsoft Corp.",
"homepage": "https://www.typescriptlang.org/",
"version": "4.1.0",
"version": "4.2.0",
"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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace ts {
// WARNING: The script `configurePrerelease.ts` uses a regexp to parse out these values.
// If changing the text in this section, be sure to test `configurePrerelease` too.
export const versionMajorMinor = "4.1";
export const versionMajorMinor = "4.2";
/** The version of the TypeScript compiler release */
export const version = `${versionMajorMinor}.0-dev`;

Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/api/tsserverlibrary.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ and limitations under the License.
***************************************************************************** */

declare namespace ts {
const versionMajorMinor = "4.1";
const versionMajorMinor = "4.2";
/** The version of the TypeScript compiler release */
const version: string;
/**
Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/api/typescript.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ and limitations under the License.
***************************************************************************** */

declare namespace ts {
const versionMajorMinor = "4.1";
const versionMajorMinor = "4.2";
/** The version of the TypeScript compiler release */
const version: string;
/**
Expand Down