diff --git a/CHANGELOG.md b/CHANGELOG.md index 924b4247..5d275dc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,27 +1,32 @@ # CHANGELOG -## Next [2015/??/??] +## v0.7.0 [2015/06/16] ### New Features -- Added `grunt serve` task to [easily install and run the Drupal site](https://github.com/phase2/grunt-drupal-tasks/blob/master/CONFIG.md#serve-settings) without external dependencies like Apache. -- Added theme scripts system to allow themes to own their [CLI destiny](https://github.com/phase2/grunt-drupal-tasks/blob/master/CONFIG.md#theme-scripts). -- Added `phplint.dir` setting to Gruntconfig to allow customization of linting paths. -- Added validate:newer and switched watch configuration top-level use it. Speed increase! +- Added `grunt serve` task to [easily install and run the Drupal site](https://github.com/phase2/grunt-drupal-tasks/blob/master/CONFIG.md#serve-settings) +without external dependencies like Apache. +- Added theme scripts system to allow running [theme-provided build scripts](https://github.com/phase2/grunt-drupal-tasks/blob/master/CONFIG.md#theme-scripts) +as part of the GDT build process. +- Added `phplint.dir` setting to Gruntconfig to allow customization of linting +paths. +- Added `grunt validate:newer` to validate only files changed since the last +run, and using it for the `grunt watch` task for a speed increase! - [New settings for `grunt package`](https://github.com/phase2/grunt-drupal-tasks/blob/master/CONFIG.md#package-settings) -to make it easier to configure Acquia or Pantheon-compatible packages. Now -produces a clean directory package for easy commit as-is to a release repository. +to prepare output ready for commit to Acquia- and Pantheon-style release +repositories. +- Added Drupal 8 test coverage, Travis and `npm test` will now run tests +against D7 and D8. +- Added support for actions against configured URLs for multiple environments. +See documentation for more information: https://github.com/phase2/grunt-drupal-tasks/blob/master/CONFIG.md#core-settings +- Additional unit & integration tests. -### Building GDT - -- Added Drupal 8 test coverage, Travis and `npm test` will now run tests against D7 and D8. -- Added support for actions against configured URLs for multiple environments. (#32, #41, [documentation (domain & siteUrls)](https://github.com/phase2/grunt-drupal-tasks/blob/master/CONFIG.md#core-settings)) -- Additional unit & integration tests. (So far we've only been running end-to-end tests.) - -### Breaking Changes +### Upgrade Notes -- Renamed GRUNT_DRUPAL_QUIET to GDT_QUIET -- `grunt package` no longer compresses by default. Use `grunt package:compress` to replicate existing behavior. +- The GRUNT_DRUPAL_QUIET environment variable to enable quiet mode is renamed +to GDT_QUIET. +- `grunt package` no longer compresses by default. Use `grunt package:compress` +to replicate former behavior. ## v0.6.1 [2015/05/17] diff --git a/example/package.json b/example/package.json index 34f345c2..61e39e4a 100644 --- a/example/package.json +++ b/example/package.json @@ -5,7 +5,7 @@ "private": true, "dependencies": { "grunt": "~0.4.5", - "grunt-drupal-tasks": "~0.6.0", + "grunt-drupal-tasks": "~0.7.0", "zombie": "^2.5.1" } } diff --git a/package.json b/package.json index 863c4f4c..915f9892 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "grunt-drupal-tasks", "description": "A Grunt plugin to automate Drupal build and testing tasks.", - "version": "0.7.0-pre", + "version": "0.7.0", "main": "bootstrap.js", "dependencies": { "grunt-available-tasks": "0.5.7",