diff --git a/CHANGELOG.md b/CHANGELOG.md index c043e9ccdb3..e4a3951bbba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Change Log === +v3.0.0-dev.2 +--- +* [new-rule-option] "react" option for `no-unused-variable` rule (#698, #725) +* [bugfix] Fix how `Linter` is exported from "tslint" module (#760) +* [bugfix] `no-use-before-declare` rule doesn't crash on uncompilable code (#763) + v3.0.0-dev.1 --- * **BREAKING CHANGES** diff --git a/package.json b/package.json index 98589fbc39d..178ee805b9b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.0.0-dev.1", + "version": "3.0.0-dev.2", "description": "a static analysis linter for TypeScript", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index b2debf1d434..1aabc1056e8 100644 --- a/src/tslint.ts +++ b/src/tslint.ts @@ -20,7 +20,7 @@ import {findConfiguration as config} from "./configuration"; const moduleDirectory = path.dirname(module.filename); class Linter { - public static VERSION = "3.0.0-dev.1"; + public static VERSION = "3.0.0-dev.2"; public static findConfiguration = config; private fileName: string;