From 405755ec15e2f5d2acd9c6dd9016087d145edd40 Mon Sep 17 00:00:00 2001 From: Vlad Filippov Date: Wed, 10 Feb 2016 19:30:16 -0500 Subject: [PATCH] v1.0.0-rc1 Fixes #1430 --- CHANGELOG | 26 ++++++++++++++++++++++++++ package.json | 10 +++++----- 2 files changed, 31 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index bf6896ba..006b94e7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,29 @@ +v1.0.0-rc1 + date: 2016-02-10 + changes: + - full list of changes is on http://gruntjs.com + - if you have a Grunt plugin that includes `grunt` in the `peerDependencies`, + we recommend tagging with `"grunt": "">= 0.4.0"` + - `coffee-script` is upgraded to `~1.10.0` which could incur breaking changes + when using the language with plugins and Gruntfiles. + - `nopt` is upgraded to `~3.0.6` which has fixed many issues, including passing + multiple arguments and dealing with numbers as options. Be aware previously + `--foo bar` used to pass the value `'bar'` to the option `foo`. It will now + set the option `foo` to `true` and run the task `bar`. + -`glob` is upgraded to `~6.0.4` and `minimatch` is upgraded to `~3.0.0`. Results + are now sorted by default with `grunt.file.expandMapping()`. Pass the + `nosort: true` option if you don't want the results to be sorted. + - `lodash` was upgraded to `~3.10.1`. Many changes have occurred. Some of which + that directly effect Grunt are `grunt.util._.template()` returns a compile + function and `grunt.util._.flatten` no longer flattens deeply. + `grunt.util._` is deprecated and we highly encourage you to + `npm install lodash` and `var _ = require('lodash')` to use `lodash`. + - `iconv-lite` is upgraded to `~0.4.13` and strips the BOM by default. + - `js-yaml` is upgraded to `~3.5.2` and may affect `grunt.file.readYAML`. + We encourage you to please `npm install js-yaml` and use + `var YAML = require('js-yaml')` directly in case of future deprecations. + - A file `mode` option can be passed into + [grunt.file.write()](http://gruntjs.com/api/grunt.file#grunt.file.write). v0.4.5: date: 2014-05-12 changes: diff --git a/package.json b/package.json index c0032b61..850aa20b 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "grunt", "description": "The JavaScript Task Runner", - "version": "0.4.6-0", - "author": "\"Cowboy\" Ben Alman (http://benalman.com/)", + "version": "1.0.0-rc1", + "author": "Grunt Development Team (http://gruntjs.com/development-team)", "homepage": "http://gruntjs.com/", "repository": "gruntjs/grunt", "license": "MIT", @@ -40,9 +40,9 @@ "exit": "~0.1.1", "findup-sync": "~0.3.0", "glob": "~6.0.4", - "grunt-cli": "git://github.com/gruntjs/grunt-cli", - "grunt-legacy-log": "~0.1.0", - "grunt-legacy-util": "git://github.com/gruntjs/grunt-legacy-util", + "grunt-cli": "1.0.0-rc1", + "grunt-legacy-log": "1.0.0-rc1", + "grunt-legacy-util": "1.0.0-rc1", "iconv-lite": "~0.4.13", "js-yaml": "~3.5.2", "minimatch": "~3.0.0",