From d4d1cdeb7c78fa1e173560b5ceb2ffcb508a5ddc Mon Sep 17 00:00:00 2001 From: Adi Dahiya Date: Tue, 16 Apr 2019 17:55:34 -0400 Subject: [PATCH] Prepare release v5.16.0 --- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ package.json | 2 +- src/linter.ts | 2 +- 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d959ea308d2..f44b85fdf26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,37 @@ # Change Log +## v5.16.0 + +- [bugfix] Excuse more [`quotemark`](https://palantir.github.io/tslint/rules/quotemark/) backtick edge cases and fix behavior for TS < 2.7.1 (#4642) +- [bugfix] Fix regression in [`interface-name`](https://palantir.github.io/tslint/rules/interface-name/) rule related to numeric characters in interface names (#4655, #4626) +- [enhancement] Update `nyc` from v10.2.0 to v13.3.0 (#4633) +- [enhancement] Migrate from deprecated [babel-code-frame](https://www.npmjs.com/package/babel-code-frame) package to new [@babel/code-frame](https://www.npmjs.com/package/@babel/code-frame) package (#4632) +- [enhancement] Improve error message for [`restrict-plus-operands`](https://palantir.github.io/tslint/rules/restrict-plus-operands/) rule. (#4635) +- [enhancement] [`comment-format`](https://palantir.github.io/tslint/rules/comment-format/) rule now whitelists `//region` comments generated by JetBrains IDE (#4609) +- [enhancement] Relax [`no-null-undefined-union`](https://palantir.github.io/tslint/rules/no-null-undefined-union/) rule. (#4625) +- [new-rule-option] `allow-else-if` option for [`unnecessary-else`](https://palantir.github.io/tslint/rules/unnecessary-else/) rule (#4599) +- [documentation] Fix "identifer" typo in custom rules docs (#4657) +- [documentation] Fix code example for [`switch-default`](https://palantir.github.io/tslint/rules/switch-default/) rule (#4650) +- [documentation] Fix documentation example for prose formatter (#4656) +- [documentation] [`no-parameter-properties`](https://palantir.github.io/tslint/rules/no-parameter-properties/): fix unclear rule description (#4629) +- [documentation] Fix typo in rule docs generation (#4638) + +Thanks to our contributors! + +- Oleg Artene +- William Neely +- Bjorn Stromberg +- Matthew Barry +- Neha Rathi +- Vincent Langlet +- rarenal +- Greg Jednaszewski +- Adam Postma +- Eric Ferreira +- Evgeniy Timokhov +- Martin Probst + + ## v5.15.0 - [api] `WalkContext` and `AbstractWalker` type parameter defaults to `void` (#2600) diff --git a/package.json b/package.json index 3becb51b2a4..55003b4ceb4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tslint", - "version": "5.15.0", + "version": "5.16.0", "description": "An extensible static analysis linter for the TypeScript language", "bin": { "tslint": "./bin/tslint" diff --git a/src/linter.ts b/src/linter.ts index a25ed99a627..c052a13e158 100644 --- a/src/linter.ts +++ b/src/linter.ts @@ -42,7 +42,7 @@ import { arrayify, dedent, flatMap, mapDefined } from "./utils"; * Linter that can lint multiple files in consecutive runs. */ export class Linter { - public static VERSION = "5.15.0"; + public static VERSION = "5.16.0"; public static findConfiguration = findConfiguration; public static findConfigurationPath = findConfigurationPath;