Skip to content

Commit b7cd72e

Browse files
author
Joe Turgeon
committed
Updating version in main and example package.json, and adding CHANGELOG.md documentation.
1 parent d4fcc86 commit b7cd72e

File tree

3 files changed

+19
-11
lines changed

3 files changed

+19
-11
lines changed

CHANGELOG.md

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,36 @@
11
# CHANGELOG
22

3-
## v0.6.0 [2015/03/??]
3+
## v0.6.0 [2015/04/07]
44

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

1823
### Upgrade Notes
1924

2025
- Remove the Drush Make `--concurrency` option from your Gruntconfig. It will no
2126
longer be respected.
22-
- If you are using the default `Gruntconfig.json` example for bin paths on PHP
23-
scripts, you should be fine.
24-
- You may need to run `rm -Rf .bundle` to clear bundler configuration to make
25-
way for the new install location.
27+
- The example `composer.json` and `Gruntconfig.json` have been both updated
28+
to support installing PHP component executables to `vendor/bin` instead
29+
of `bin`. If you want to continue using `bin`, use caution when updating
30+
these files.
31+
- Ruby bundle executables are moved to `vendor/bin` from `bin`. This change is
32+
intrinsic to v0.6.0. You may need to run `rm -Rf .bundle` to clear Bundler
33+
configuration to make way for the new install location.
2634
- Gruntconfig.json no longer needs the `buildPaths` config key. Elements of
2735
`buildPaths` added to your project Gruntconfig will override default behavior.
2836
- Configuration of `grunt help` for project-specific tasks via Gruntconfig.json

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"private": true,
66
"dependencies": {
77
"grunt": "~0.4.5",
8-
"grunt-drupal-tasks": "~0.5.1",
8+
"grunt-drupal-tasks": "~0.6.0",
99
"zombie": "^2.5.1"
1010
}
1111
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grunt-drupal-tasks",
33
"description": "Grunt-based build and testing tasks for Drupal projects.",
4-
"version": "0.6.0-pre",
4+
"version": "0.6.0",
55
"main": "bootstrap.js",
66
"dependencies": {
77
"grunt-available-tasks": "0.5.7",

0 commit comments

Comments
 (0)