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 #961 from palantir/release-3.4.0-dev.1
Browse files Browse the repository at this point in the history
Prepare release 3.4.0-dev.1
  • Loading branch information
adidahiya committed Feb 8, 2016
2 parents 027988b + cf10565 commit 2256daa
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
Change Log
===

v3.4.0-dev.1
---
* [enhancement] Revamped testing system (#620)
* Writing tests for rules is now much simpler with a linter DSL.
See exisitng tests in `test/rules/**/*.ts.lint` for examples.
* [enhancement] New msbuild formatter (#947)
* [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)
* __BREAKING CHANGES__
* [bugfix] Report error when a rule in the config file is not found (#598)

Thanks to our contributors!
* @mmv
* @pe8ter

v3.3.0-dev.2
---
* Add TypeScript peer dependency `>=1.9.0-dev` to support latest nightlies
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.3.0-dev.2",
"version": "3.4.0-dev.1",
"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.3.0-dev.2";
public static VERSION = "3.4.0-dev.1";
public static findConfiguration = config;

private fileName: string;
Expand Down

0 comments on commit 2256daa

Please sign in to comment.