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 #555 from palantir/release-2.5.0-dev.1
Browse files Browse the repository at this point in the history
Prepare Release v2.5.0-dev.1
  • Loading branch information
adidahiya committed Aug 6, 2015
2 parents f9c3161 + 5235cc7 commit d045263
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
===

v2.5.0-dev.1
---
* Upgrade TypeScript compiler to v1.6.0-dev.20150805
* [enhancement] Support `.tsx` syntax (#490)

v2.4.2
---
* [bug] remove npm-shrinkwrap.json from the published package
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ TSLint

A linter for the TypeScript language.

"next" distribution
-------------------

The `next` [branch of the TSLint repo](https://github.com/palantir/tslint/tree/next) tracks the latest TypeScript
compiler and allows you to lint TS code that uses the latest features of the language. Releases from this branch
are published to npm with the `next` dist-tag, so you can get the latest dev version of TSLint via
`npm install tslint@next`.

Installation
------------

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.4.2",
"version": "2.5.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 @@ -37,7 +37,7 @@ module Lint {
private source: string;
private options: ILinterOptions;

public static VERSION = "2.4.2";
public static VERSION = "2.5.0-dev.1";

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

0 comments on commit d045263

Please sign in to comment.