diff --git a/CHANGELOG.md b/CHANGELOG.md index be039ec440c..3d5d7bcf1ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ Change Log === +v3.2.2 +--- +* Stable release containing changes from the last dev release + +v3.2.2-dev.1 +--- +* [enhancement] Throw an error if a path to a directory of custom rules is invalid (#910) +* [new-rule-option] "jsx-single" and "jsx-double" options for `quotemark` rule (#673) +* [bugfix] Handle paths to directories of custom rules more accurately +* [bugfix] `no-unused-expression` rule handles `await` statements correctly (#887) + v3.2.1 --- * Stable release containing changes from the last dev release diff --git a/package.json b/package.json index 420eb2f3aed..3178d5ed050 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.2.1", + "version": "3.2.2", "description": "a static analysis linter for TypeScript", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index c259a09fb3d..28987b368b2 100644 --- a/src/tslint.ts +++ b/src/tslint.ts @@ -25,7 +25,7 @@ import {ILinterOptions, LintResult} from "./lint"; import {loadRules} from "./ruleLoader"; class Linter { - public static VERSION = "3.2.1"; + public static VERSION = "3.2.2"; public static findConfiguration = config; private fileName: string;