Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Merge pull request #979 from palantir/v3.4.0-dev.2
Browse files Browse the repository at this point in the history
Prepare release v3.4.0-dev.2
  • Loading branch information
adidahiya committed Feb 19, 2016
2 parents 7aed4fa + ddd9ece commit 6d9f951
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
Change Log
===

v3.4.0-dev.2
---
* [new-rule-option] "arrow-parameter" option for `typedef` rule (#333)
* [new-rule-option] "never" option for `semicolon` rule (#363)
* [new-rule-option] "onespace" setting for `typedef-whitespace` rule (#888)
* [new-rule-option] `typedef-whitespace` rule can now check spacing on right side of typdef colon (#888)
* [enhancement] `member-ordering` rule treats arrow functions as methods (#226)
* [bugfix] Handle spaces before typedefs correctly in `typedef-whitespace` rule (#955)
* [bugfix] `label-position` rule now allows labels on `for-of` loops (#959)

Thanks to our contributors!
* @b0r3as
* @ChaseMoskal
* @Pajn
* @pe8ter
* @tomduncalf

v3.4.0-dev.1
---
* [enhancement] Revamped testing system (#620)
Expand All @@ -10,7 +27,7 @@ v3.4.0-dev.1
* [bugfix] Fix handling of multiline literals in `trailing-comma` rule (#856)
* [bugfix] `one-line` rule correctly checks space between `catch` and opening brace (#925)
* [bugfix] `one-line` rule correctly checks multiline variable declarations (#935)
* [enhancement] New option `check-finally` for `one-line` rule (#925)
* [new-rule-option] New option `check-finally` for `one-line` rule (#925)
* __BREAKING CHANGES__
* [bugfix] Report error when a rule in the config file is not found (#598)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tslint",
"version": "3.4.0-dev.1",
"version": "3.4.0-dev.2",
"description": "a static analysis linter for TypeScript",
"bin": {
"tslint": "./bin/tslint"
Expand Down
2 changes: 1 addition & 1 deletion src/tslint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {ILinterOptions, LintResult} from "./lint";
import {loadRules} from "./ruleLoader";

class Linter {
public static VERSION = "3.4.0-dev.1";
public static VERSION = "3.4.0-dev.2";
public static findConfiguration = config;

private fileName: string;
Expand Down

0 comments on commit 6d9f951

Please sign in to comment.