diff --git a/CHANGELOG.md b/CHANGELOG.md index fb082d2fe32..6e281d07a92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Change Log === +v3.10.2 +--- +* Stable release containing changes from the last dev release (v3.10.0-dev.2) + +v3.10.0-dev.2 +--- +* [bugfix] `member-ordering` rule doesn't crash on methods in class expressions (#1252) +* [bugfix] `ban` rule handles chained methods appropriately (#1234) + +Thanks to our contributors! +* @marines + v3.10.1 --- * Stable release containing changes from the last dev release (v3.10.0-dev.1) diff --git a/package.json b/package.json index 3cc5b62abb6..469f59b1d59 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.10.1", + "version": "3.10.2", "description": "An extensible static analysis linter for the TypeScript language", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index 9edb1f039c2..552d6a25dbd 100644 --- a/src/tslint.ts +++ b/src/tslint.ts @@ -33,7 +33,7 @@ import {loadRules} from "./ruleLoader"; import {arrayify} from "./utils"; class Linter { - public static VERSION = "3.10.1"; + public static VERSION = "3.10.2"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath;