Skip to content

Commit

Permalink
v1.0.0-rc1
Browse files Browse the repository at this point in the history
Fixes #1430
  • Loading branch information
vladikoff authored and shama committed Feb 11, 2016
1 parent bbd5d2d commit 405755e
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 5 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 405755e

Please sign in to comment.