Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Release v2.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
adidahiya committed Aug 26, 2015
1 parent 6dbe411 commit d7a331b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions 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)
Expand Down
2 changes: 1 addition & 1 deletion lib/tslint.d.ts
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
2 changes: 1 addition & 1 deletion src/tslint.ts
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion test/tsconfig.json
Expand Up @@ -88,4 +88,4 @@
"./rules/variableNameRuleTests.ts",
"./rules/whitespaceRuleTests.ts"
]
}
}

0 comments on commit d7a331b

Please sign in to comment.