From 47fae92dc69aeef6514a4107a44752898a910012 Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Tue, 3 May 2016 16:58:23 -0400 Subject: [PATCH] Prepare release v3.9.0 (#1201) --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ package.json | 2 +- src/tslint.ts | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50a00cf2dde..f1f180a9a5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,34 @@ Change Log === +v3.9.0 +--- +* Stable release containing changes from the last dev release (v3.9.0-dev.0) + +v3.9.0-dev.0 +--- +* [new-rule] `no-namespace` rule (#1133) +* [new-rule] `one-variable-per-declaration` rule (#525) +* [new-rule-option] "ignore-params" option for `no-inferrable-types` rule (#1190) +* [new-rule-option] "no-this-in-function-in-method" option for `no-invalid-this` rule (#1179) +* [enhancement] Single line enable/disable comments (#144) +* [enhancement] Resolve `extends` packages relative to location of configuration file (#1171) +* [enhancement] `Linter` class will throw an error if configuration is of an invalid type (#1167) +* [bugfix] `use-isnan` allows assaignments to `NaN` (#1054) +* [bugfix] `no-unreachable` handles allows hoisted type aliases (#564) +* [bugfix] `member-ordering` rule now checks constructors (#1158) +* [bugfix] `--test` CLI command works correctly with specifiying custom rules (#1195) + +Thanks to our contributors! +* @abierbaum +* @HamletDRC +* @inthemill +* @janslow +* @JoshuaKGoldberg +* @mprobst +* @patsissions +* @YuichiNukiyama + v3.8.1 --- * Stable release containing changes from the last dev release (v3.8.0-dev.1) diff --git a/package.json b/package.json index 696249bb297..39083639ee6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.8.1", + "version": "3.9.0", "description": "a static analysis linter for TypeScript", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index cbd21885f62..3b4884be4a8 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.8.1"; + public static VERSION = "3.9.0"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath;