From 58ee5998bb2a4d6a3c6f1c92b2ee44df866c42f4 Mon Sep 17 00:00:00 2001 From: Steve Ognibene Date: Wed, 14 Oct 2015 16:04:19 -0400 Subject: [PATCH] Update for v5.1.0 --- CHANGELOG.md | 11 ++++++++++- README.md | 3 +-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6abe8356..554df0b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,16 @@ # Releases ## Next -* Upgraded to TypeScript 1.6.2 (thanks to @vp2177 and @JoshuaKGoldberg for sending early PRs, and for @awjreynolds, @Zjaaspoer, @DrColossos, @ravishivt, @logankd, and @Gouigouix for early encouragement.) + +## v5.1.0 +* FEAT: Upgraded to TypeScript 1.6.2 (thanks to @vp2177 and @JoshuaKGoldberg for sending early PRs, and for @awjreynolds, @Zjaaspoer, @DrColossos, @ravishivt, @logankd, and @Gouigouix for early encouragement.) + * Added support for `--moduleResolution`, `--jsx`, `--experimentalAsyncFunctions`, `--suppressExcessPropertyErrors`, `--rootDir`. + * Added `outFile` support to `tsconfig.json` (same function as `out`, but always relative to `tsconfig.json` file.) + * Support all TypeScript 1.6 features from Visual Studio/MSBuild (via upgrade to csproj2ts v0.0.6). +* FIX: Fixed bug where `outDir` in `tsconfig.json` was not treated as being relative to the `tsconfig.json` file. +* FIX: New tests for "HTML" features (Thanks again, @rolego (#297). +* FIX: Blank `tsconfig.json` should not be an error according to the spec, so this was changed to be same as `{}`. +* DOCS: New documentation for several "HTML" features - `htmlOutDir` and `htmlOutDirFlatten`. ## v5.0.1 (2015-10-08) * FIX: 'htmlOutputTemplate' was not handled. Thanks for the PR, @rolego (#291). diff --git a/README.md b/README.md index f7d1ca60..c1fe6c76 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,7 @@ 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). ### Latest Changes -Latest release is `5.0.1`, which includes `tsconfig.json` support and TypeScript 1.5, among many other improvements. -Current beta release is `5.1.0-beta.1`, which includes TypeScript 1.6 support and some bug fixes. +Latest release is `5.1.0`, which supports TypeScript 1.6 and contains bugfixes. [Full changelog is here](CHANGELOG.md).