From bf8211df57e0cee682b3f584a52476b7e16df1c0 Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Fri, 11 Mar 2016 15:49:59 -0500 Subject: [PATCH] Prepare release v3.6.0 --- CHANGELOG.md | 16 ++++++++++++++++ package.json | 2 +- src/tslint.ts | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 825bbbfe0fe..9d9b5ff64a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ Change Log === +v3.6.0 +--- +* Stable release containing changes from the last dev release + +v3.6.0-dev.1 +--- +* [enhancement] Add `--exclude` CLI option (#915) +* [bugfix] Fix `no-shadowed-variable` rule handling of standalone blocks (#1021) +* [deprecation] Configuration through `package.json` files (#1020) +* [API] Export additional configuration methods from top-level "tslint" module (#1009) + +Thanks to our contributors! +* @blakeembrey +* @hamhut1066 +* @meowtec + v3.5.0 --- * Stable release containing changes from the last dev release diff --git a/package.json b/package.json index eb701e0eaf4..013bcc3fc35 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.5.0", + "version": "3.6.0", "description": "a static analysis linter for TypeScript", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index c46d62d47a9..88475f601dd 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.5.0"; + public static VERSION = "3.6.0"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath; public static getRulesDirectories = getRulesDirectories;