diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fa3fb453d1..34da74f8a11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ Change Log === +v3.7.2 +--- +* Stable release containing changes from the last dev release (v3.7.0-dev.3) + +v3.7.0-dev.3 +--- +* [bugfix] `findConfigurationPath` always returns an absolute path (#1093) +* [bugfix] Update `findup-sync` dependency (#1080) +* [bugfix] `declare global` no longer triggers `no-internal-module` rule (#1069) +* [bugfix] Valid JS directives no longer trigger `no-unused-expression` rule (#1050) + v3.7.1 --- * Stable release containing changes from the last dev release diff --git a/package.json b/package.json index 68f78a30ed2..c78fef00b75 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.7.1", + "version": "3.7.2", "description": "a static analysis linter for TypeScript", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index 777a5e29adf..bb3f87a15f3 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.7.1"; + public static VERSION = "3.7.2"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath; public static getRulesDirectories = getRulesDirectories;