From 127d0fdf747c32e2cf10fca69d314e50128036a1 Mon Sep 17 00:00:00 2001 From: Noah Chen Date: Tue, 28 Feb 2017 13:52:35 -0500 Subject: [PATCH] Prepare release v4.5.1 (#2274) --- CHANGELOG.md | 6 ++++++ package.json | 2 +- src/configs/latest.ts | 1 + src/linter.ts | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ce247f59ea..f0e1947c46b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Change Log === +v4.5.1 +--- + +- [enhancement] Updated recommended rules to include `ban-types` and `no-duplicate-super` (#2271) +- [bugfix] `object-literal-key-quotes` handle negative number property name (#2273) + v4.5.0 --- diff --git a/package.json b/package.json index e301095a471..57fba87e655 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "4.5.0", + "version": "4.5.1", "description": "An extensible static analysis linter for the TypeScript language", "bin": { "tslint": "./bin/tslint" diff --git a/src/configs/latest.ts b/src/configs/latest.ts index 9e8e743f687..928abec07e0 100644 --- a/src/configs/latest.ts +++ b/src/configs/latest.ts @@ -63,6 +63,7 @@ export const rules = { ["String", "Avoid using the `String` type. Did you mean `string`?"], ["Symbol", "Avoid using the `Symbol` type. Did you mean `symbol`?"], ], + "no-duplicate-super": true, }; // tslint:enable object-literal-sort-keys diff --git a/src/linter.ts b/src/linter.ts index c1bfd83c9eb..4e947e8f734 100644 --- a/src/linter.ts +++ b/src/linter.ts @@ -44,7 +44,7 @@ import { arrayify, dedent } from "./utils"; * Linter that can lint multiple files in consecutive runs. */ class Linter { - public static VERSION = "4.5.0"; + public static VERSION = "4.5.1"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath;