Skip to content

Commit

Permalink
Merge pull request palantir#429 from leeavital/2.3.0-release
Browse files Browse the repository at this point in the history
Prepare for version 2.3.0
  • Loading branch information
adidahiya committed Jun 15, 2015
2 parents d40fbe1 + dd37e64 commit 2c95a8b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
Change Log
===
v2.3.0
---
* [bugs] #401 #367 #324 #352
* [new-rule] `no-var-keyword` disallows `var` in favor of `let` and `const`
* [new-rule] `sort-object-literal-keys` forces object-literal keys to be sorted alphabetically
* Add support for ES6 destructuring and module syntax (affects `variable-name`, `no-use-before-declare`, `whitespace` and `no-unused-variable`)
* Add support for ES6 for-of and spread operator syntax
* Use tsconfig.json & JSCS in the build system

===
v2.2.0-beta
---
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.2.0-beta",
"version": "2.3.0",
"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 @@ -36,7 +36,7 @@ module Lint {
private source: string;
private options: ILinterOptions;

public static VERSION = "2.2.0-beta";
public static VERSION = "2.3.0";

constructor(fileName: string, source: string, options: ILinterOptions) {
this.fileName = fileName;
Expand Down

0 comments on commit 2c95a8b

Please sign in to comment.