Skip to content

Commit

Permalink
0.7.0-dev.1
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed Mar 28, 2015
1 parent 8795d9f commit 807c11b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions changelog.md
Expand Up @@ -6,8 +6,10 @@
- The `GrinderContext` arg is no longer expected in task functions. Instead, the
`context` variable (and the `log` and `fail` functions) are available as global
variables. They're injected into the zone running the current task.
- copyFile and copyDirectory and deprecated in favor of a new `copy` method
- deleteEntity is deprecated in favor of a new `delete` method
- `copyFile` and `copyDirectory` and deprecated in favor of a new `copy` method
- `deleteEntity` is deprecated in favor of a new `delete` method
- Added a wrapper class around `pub global activate` applications - `PubApplication`
- Grinder can now create a simple starter script for a project - run `pub global run grinder:init`

## 0.6.5 (2015/1/13)
- added `defaultInit()` and `defaultClean()` methods, for common tasks
Expand Down
2 changes: 1 addition & 1 deletion lib/src/cli.dart
Expand Up @@ -14,7 +14,7 @@ import 'utils.dart';
import '../grinder.dart';

// This version must be updated in tandem with the pubspec version.
const String APP_VERSION = '0.6.6+3';
const String APP_VERSION = '0.7.0-dev.1';

List<String> grinderArgs() => _args;
List<String> _args;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
@@ -1,6 +1,6 @@
name: grinder
# This version must be updated in tandem with the lib/src/cli.dart version.
version: 0.6.6+3
version: 0.7.0-dev.1
description: Grinder - a task based, dependency aware build system.

homepage: https://github.com/google/grinder.dart
Expand Down

0 comments on commit 807c11b

Please sign in to comment.