Skip to content

Commit

Permalink
Updating version in main and example package.json, and adding CHANGEL…
Browse files Browse the repository at this point in the history
…OG.md documentation.
  • Loading branch information
Joe Turgeon committed Apr 7, 2015
1 parent d4fcc86 commit b7cd72e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
26 changes: 17 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,36 @@
# CHANGELOG

## v0.6.0 [2015/03/??]
## v0.6.0 [2015/04/07]

- **Added automatic support for Drupal 8 based on drush detection of the Drupal version.**
- **Added automatic support for Drupal 8 based on Drush detection of the Drupal
version.**
- Dynamically compute Drush Make concurrency based on system capability with a
new concurrency detection service.
- Ruby (bundler) will now install dependencies into `vendor/bundle`.
- Ruby and PHP upstream binaries are placed or symlinked from `vendor/bin`.
This frees up `bin/` for custom project scripts.
- Moved more default Gruntconfig.json into code for a slimmer project Gruntconfig.
- Ensure reports directory is created before running analyze
- Adding default values for the buildPaths in the project Gruntconfig.json so
the buildPaths config is no longer required.
- Ensure reports directory is created before running analyze.
- Support for \*.sass files in compass watch.
- Refactored `grunt help` task to be extensible from separate projects.
- The docroot assembly tasks (such as the symlinking) performed after drush make
have been consolidated into a new `grunt scaffold` task.
have been consolidated into a new `scaffold` task.
- Due to npm's behavior that strips .gitignore files from packages, the example
.gitignore is renamed to gitignore, and needs to be renamed manually after
installation.

### Upgrade Notes

- Remove the Drush Make `--concurrency` option from your Gruntconfig. It will no
longer be respected.
- If you are using the default `Gruntconfig.json` example for bin paths on PHP
scripts, you should be fine.
- You may need to run `rm -Rf .bundle` to clear bundler configuration to make
way for the new install location.
- The example `composer.json` and `Gruntconfig.json` have been both updated
to support installing PHP component executables to `vendor/bin` instead
of `bin`. If you want to continue using `bin`, use caution when updating
these files.
- Ruby bundle executables are moved to `vendor/bin` from `bin`. This change is
intrinsic to v0.6.0. You may need to run `rm -Rf .bundle` to clear Bundler
configuration to make way for the new install location.
- Gruntconfig.json no longer needs the `buildPaths` config key. Elements of
`buildPaths` added to your project Gruntconfig will override default behavior.
- Configuration of `grunt help` for project-specific tasks via Gruntconfig.json
Expand Down
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"private": true,
"dependencies": {
"grunt": "~0.4.5",
"grunt-drupal-tasks": "~0.5.1",
"grunt-drupal-tasks": "~0.6.0",
"zombie": "^2.5.1"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-drupal-tasks",
"description": "Grunt-based build and testing tasks for Drupal projects.",
"version": "0.6.0-pre",
"version": "0.6.0",
"main": "bootstrap.js",
"dependencies": {
"grunt-available-tasks": "0.5.7",
Expand Down

0 comments on commit b7cd72e

Please sign in to comment.