From a4808ab58f59d8fe9d62d0fb4261ac6c75bc2ace Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Fri, 1 Apr 2016 15:13:01 -0400 Subject: [PATCH] Prepare release v3.7.0-dev.1 --- CHANGELOG.md | 19 +++++++++++++++++++ package.json | 2 +- src/tslint.ts | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dfa0cf98d9..c5f1f6e5cba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,25 @@ Change Log === +v3.7.0-dev.1 +--- +* [enhancement] `extends` field for `tslint.json` files (#997) +* [enhancement] `--force` CLI option (#1059) +* [enhancement] Improve how `Linter` class handles configurations with a `rulesDirectory` field (#1035) +* [new-rule] `no-angle-bracket-type-assertion` rule (#639) +* [new-rule-option] "allow-undefined-check" option for `triple-equals` rule (#602) +* [new-rule-option] "always-prefix" and "never-prefix" option for `interface-name` rule (#512) + +Thanks to our contributors! +* @Arnavion +* @chrismbarr +* @ChrisPearce +* @JoshuaKGoldberg +* @patsissonso +* @sasidhar +* @unional +* @vvakame + v3.6.0 --- * Stable release containing changes from the last dev release diff --git a/package.json b/package.json index 3ec62caa11c..676df0303da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.6.0-dev.1", + "version": "3.7.0-dev.1", "description": "a static analysis linter for TypeScript", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index 8e66aeb6a8a..f207c4e9244 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.6.0-dev.1"; + public static VERSION = "3.7.0-dev.1"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath; public static getRulesDirectories = getRulesDirectories;