From af6bfdd823079b85c09c8da22c47ca73c46fe561 Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Tue, 12 Apr 2016 14:11:42 -0400 Subject: [PATCH] Prepare release v3.7.0-dev.5 (#1119) --- CHANGELOG.md | 4 ++++ package.json | 2 +- src/tslint.ts | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0563d05af2..0a5066aed69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Change Log === +v3.7.0-dev.5 +--- +* [bugfix] Allow JS directives in namespaces (#1115) + v3.7.3 --- * Stable release containing changes from the last dev release (v3.7.0-dev.4) diff --git a/package.json b/package.json index 9290cc1f3a3..469c941a8b6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.7.0-dev.4", + "version": "3.7.0-dev.5", "description": "a static analysis linter for TypeScript", "bin": { "tslint": "./bin/tslint" diff --git a/src/tslint.ts b/src/tslint.ts index 3f8bf6236c3..217ecc48599 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.0-dev.4"; + public static VERSION = "3.7.0-dev.5"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath; public static getRulesDirectories = getRulesDirectories;