From d7a331b065f92cd8edbc4dec272dfec5c15af177 Mon Sep 17 00:00:00 2001 From: Adi Dahiya Date: Tue, 25 Aug 2015 22:55:50 -0400 Subject: [PATCH] Release v2.4.4 --- CHANGELOG.md | 4 ++++ lib/tslint.d.ts | 2 +- package.json | 2 +- src/tslint.ts | 2 +- test/tsconfig.json | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c8a4535e2d..0d276cfa49f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Change Log === +v2.4.4 +--- +* [bugfix] remove "typescript" block from package.json (#606) + v2.4.3 --- * [new-rule] `no-conditional-assignment` (#507) diff --git a/lib/tslint.d.ts b/lib/tslint.d.ts index 12e874de393..2ae69ec9680 100644 --- a/lib/tslint.d.ts +++ b/lib/tslint.d.ts @@ -250,10 +250,10 @@ declare module Lint { rulesDirectory: string; } class Linter { + static VERSION: string; private fileName; private source; private options; - static VERSION: string; constructor(fileName: string, source: string, options: ILinterOptions); lint(): LintResult; private getRelativePath(directory); diff --git a/package.json b/package.json index afa9e402076..ea29a5cd475 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "2.4.3", + "version": "2.4.4", "description": "a static analysis linter for TypeScript", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index db891734236..5a0fd7a928c 100644 --- a/src/tslint.ts +++ b/src/tslint.ts @@ -33,7 +33,7 @@ module Lint { } export class Linter { - public static VERSION = "2.4.3"; + public static VERSION = "2.4.4"; private fileName: string; private source: string; diff --git a/test/tsconfig.json b/test/tsconfig.json index 1b84cb39c1b..de0c639a006 100644 --- a/test/tsconfig.json +++ b/test/tsconfig.json @@ -88,4 +88,4 @@ "./rules/variableNameRuleTests.ts", "./rules/whitespaceRuleTests.ts" ] -} \ No newline at end of file +}