From 5eadb1208fca21d7619f23724dee752f1dfdb449 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Tue, 29 Oct 2019 17:47:13 -0700 Subject: [PATCH 1/2] Add 3.8 --- index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.ts b/index.ts index 0f7b953..e6ca96f 100644 --- a/index.ts +++ b/index.ts @@ -13,11 +13,11 @@ Example: /** Parse-able TypeScript versions. Only add to this list if we will support this version on DefinitelyTyped. */ export type TypeScriptVersion = | "2.0" | "2.1" | "2.2" | "2.3" | "2.4" | "2.5" | "2.6" | "2.7" | "2.8" | "2.9" - | "3.0" | "3.1" | "3.2" | "3.3" | "3.4" | "3.5" | "3.6" | "3.7"; + | "3.0" | "3.1" | "3.2" | "3.3" | "3.4" | "3.5" | "3.6" | "3.7" | "3.8"; export namespace TypeScriptVersion { export const all: ReadonlyArray = ["2.0", "2.1", "2.2", "2.3", "2.4", "2.5", "2.6", "2.7", "2.8", "2.9", - "3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6", "3.7"]; + "3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6", "3.7", "3.8"]; export const lowest = all[0]; /** Latest version that may be specified in a `// TypeScript Version:` header. */ export const latest = all[all.length - 1]; @@ -50,6 +50,7 @@ export namespace TypeScriptVersion { "ts3.5", "ts3.6", "ts3.7", + "ts3.8", "latest", ]; From 41aaa24c11c13a4c5d3ea7a8db33c89ce051497f Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Tue, 29 Oct 2019 17:48:18 -0700 Subject: [PATCH 2/2] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 54f1288..2fef4e2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "definitelytyped-header-parser", "author": "Nathan Shively-Sanders (http://github.com/Microsoft/definitelytyped-header-parser)", - "version": "3.7.2", + "version": "3.8.2", "description": "", "main": "index.js", "types": "index.d.ts",