Skip to content

Commit

Permalink
Merge pull request palantir#753 from palantir/release-3.0.0-dev.1
Browse files Browse the repository at this point in the history
Prepare release 3.0.0-dev.1
  • Loading branch information
adidahiya committed Oct 24, 2015
2 parents e75c9ff + 1f619d8 commit 9159463
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Change Log
===

v3.0.0-dev.1
---
* **BREAKING CHANGES**
* Rearchitect tslint to use external modules instead of merged namespaces (#726)
* Dependencies need to be handled differently now by custom rules and formatters
* See the [PR](https://github.com/palantir/tslint/pull/726) for full details about this change
* `no-trailing-comma` rule removed, it is replaced by the `trailing-comma` rule (#687)
* Rename `sort-object-literal-keys` rule to `object-literal-sort-keys` (#304, #537)
* `Lint.abstract()` has been removed (#700)
* [new-rule] `trailing-comma` rule (#557, #687)
* [new-rule-option] "ban-keywords" option for `variable-name` rule (#735, #748)
* [bugfix] `typedef` rule now handles `for-of` loops correctly (#743)
* [bugfix] Handle tslint.json utf-8 files which have a BOM correctly (#90)

v2.6.0-dev.2
---
* Upgrade TypeScript compiler to `v1.7.0-dev.20151003`
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": "2.6.0-dev.2",
"version": "3.0.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 @@ -20,7 +20,7 @@ import {findConfiguration as config} from "./configuration";
const moduleDirectory = path.dirname(module.filename);

export default class Linter {
public static VERSION = "2.6.0-dev.2";
public static VERSION = "3.0.0-dev.1";
public static findConfiguration = config;

private fileName: string;
Expand Down

0 comments on commit 9159463

Please sign in to comment.