Skip to content

Commit 2717873

Browse files
committed
Prep 5.2.0 release.
1 parent b9e898e commit 2717873

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Next
44

5+
## v5.2.0 (2015-11-21)
6+
* FIX: Grunt pipeline will once again halt by default in the presence of type errors. This was a regression in 5.0.0. Thanks to @mironx, @niondir, and @johnman for the report and assistance. We've added assertions for the count of failed build events in the grunt-ts `release` test cycle, so a regression like this should hopefully not happen again.
7+
* FEAT: Added new option `emitGruntEvents`. In the event of a build failure, grunt-ts will now raise an event `grunt-ts.failure` if `emitGruntEvents` is `true`. See the [docs](README.md#emitgruntevents) for more detail and an example. This defaults to `false`, so it's opt-in and there is no change to the existing grunt-ts default behavior.
8+
59
## v5.1.1 (2015-11-17)
610
* FIX: Fixes to htmlOutputTemplate. Thanks so much to @rolego, @sethx, and @johnman for the help.
711
* DOCS: tweak to html2ts docs to clarify and perhaps fix old merge conflict.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Grunt-ts is an npm package that handles TypeScript compilation work in GruntJS build scripts. It provides a [Grunt-compatible wrapper](#support-for-tsc-switches) for the `tsc` command-line compiler, and provides some [additional functionality](#grunt-ts-gruntfilejs-options) that improves the TypeScript development workflow. Grunt-ts supports compiling against [tsconfig.json](#tsconfig) or even a [Visual Studio project](#vs) directly. Grunt-ts is itself written in [TypeScript](./tasks/ts.ts).
88

99
### Latest Changes
10-
Latest release is `5.1.1`, which supports TypeScript 1.6 and contains bugfixes.
10+
Latest release is `5.2.0`, which supports TypeScript 1.6 and contains bugfixes.
1111

1212
[Full changelog is here](CHANGELOG.md).
1313

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "basarat",
33
"name": "grunt-ts",
44
"description": "Compile and manage your TypeScript project",
5-
"version": "5.1.1",
5+
"version": "5.2.0",
66
"homepage": "https://github.com/grunt-ts/grunt-ts",
77
"repository": {
88
"type": "git",

0 commit comments

Comments
 (0)