Version 0.8.0

This commit is contained in:
Thibaud Guillaume-Gentil 2011-09-28 22:18:29 +02:00
parent b2488e7b9e
commit 243ea157a9
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
## Master ## 0.8.0 - September 28, 2011
### Bugs fixes: ### Bugs fixes:
@ -7,7 +7,7 @@
### New feature: ### New feature:
- Pull request [#136](https://github.com/guard/guard/pull/136): New CLI `:watch_all_modifications`/`-A` option to watch for deleted and moved files too. ([@limeyd][]) - Pull request [#136](https://github.com/guard/guard/pull/136): New CLI `:watch_all_modifications`/`-A` option to watch for deleted and moved files too. ([@limeyd][] & [@netzpirat][])
- Issue [#97](https://github.com/guard/guard/issues/97): Guard dependencies. Task execution can now be halted if a Guard throws `:task_has_failed` and `Guard::Dsl#group` options include `:halt_on_fail => true`. ([@rymai][]) - Issue [#97](https://github.com/guard/guard/issues/97): Guard dependencies. Task execution can now be halted if a Guard throws `:task_has_failed` and `Guard::Dsl#group` options include `:halt_on_fail => true`. ([@rymai][])
- Issue [#121](https://github.com/guard/guard/issues/121): `Guard.guards` and `Guard.groups` are now smart accessors. Filters can be passed to find a specific Guard/group or several Guards/groups that match (see YARDoc). ([@rymai][] & [@ches][]) - Issue [#121](https://github.com/guard/guard/issues/121): `Guard.guards` and `Guard.groups` are now smart accessors. Filters can be passed to find a specific Guard/group or several Guards/groups that match (see YARDoc). ([@rymai][] & [@ches][])
- New `Guard::Group` class to store groups defined in Guardfile (with `Guard::Dsl#group`). ([@rymai][]) - New `Guard::Group` class to store groups defined in Guardfile (with `Guard::Dsl#group`). ([@rymai][])

View File

@ -1,6 +1,6 @@
module Guard module Guard
unless defined? Guard::VERSION unless defined? Guard::VERSION
# The current gem version of Guard # The current gem version of Guard
VERSION = '0.7.0' VERSION = '0.8.0'
end end
end end