From a87b78f48ad7219e67e2db2aa85fa05b5073e22f Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Sun, 24 Apr 2016 22:09:44 -0400 Subject: [PATCH] Prepare release v3.8.0-dev.1 (#1162) --- CHANGELOG.md | 5 +++++ package.json | 2 +- src/tslint.ts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc0c63a76cf..9165634c108 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Change Log === +v3.8.0-dev.1 +--- +* [bugfix] Allow JS directives at the start of constructors, getters, and setters (#1159) +* [bugfix] Remove accidentally included performance profiles from published NPM artifact (#1160) + v3.8.0 --- * Stable release containing changes from the last dev release (v3.8.0-dev.0) diff --git a/package.json b/package.json index dc098215c36..065e2d04015 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "3.8.0-dev.0", + "version": "3.8.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 d9d4b11a379..449c98b4c56 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.0-dev.0"; + public static VERSION = "3.8.0-dev.1"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath;