Skip to content
This repository has been archived by the owner on Sep 19, 2020. It is now read-only.

Commit

Permalink
Bump version for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Crump committed Apr 21, 2012
1 parent dee7822 commit 8c996be
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
36 changes: 36 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,39 @@
## 1.2.0 (21st April, 2012)

Features:

- [FC025: Prefer chef_gem to compile-time gem install](http://acrmp.github.com/foodcritic/#FC025)
rule added.
- Rules can now declare which versions of Chef they `apply_to`. The new
command line argument `-c` (`--chef-version`) should be used to specify the
effective Chef version.

Bugfixes:

- [FC001: Use strings in preference to symbols to access node attributes](http://acrmp.github.com/foodcritic/#FC001)
could show false positives when using Chef search.
- [FC001: Use strings in preference to symbols to access node attributes](http://acrmp.github.com/foodcritic/#FC001)
would overlook the use of symbols to access node attributes when passing
template variables.
- [FC002: Avoid string interpolation where not required](http://acrmp.github.com/foodcritic/#FC002)
fixed to no longer ignore the first keypair in a Hash
([related issue](https://github.com/acrmp/foodcritic/issues/24)).
Thanks @Ips1975.
- [FC004: Use a service resource to start and stop services](http://acrmp.github.com/foodcritic/#FC004)
modified not to warn if the action is not supported by the `service`
resource.
- [FC005: Avoid repetition of resource declarations](http://acrmp.github.com/foodcritic/#FC005)
modified not to warn when resources are branched within conditionals or
provider actions.
- [FC007: Ensure recipe dependencies are reflected in cookbook metadata](http://acrmp.github.com/foodcritic/#FC007)
modified to ignore the use of `include_recipe` with embedded expressions.
- [FC023: Prefer conditional attributes](http://acrmp.github.com/foodcritic/#FC023)
modified not to warn if the conditional expression has an `else`.
- The `resource_attributes` API method has been updated to return block
attributes which were previously ignored
([related issue](https://github.com/acrmp/foodcritic/issues/23)).
Thanks @jonlives.

## 1.1.0 (25th March, 2012)

Features:
Expand Down
2 changes: 1 addition & 1 deletion lib/foodcritic/version.rb
@@ -1,4 +1,4 @@
module FoodCritic
# The current version of foodcritic
VERSION = '1.1.0'
VERSION = '1.2.0'
end

0 comments on commit 8c996be

Please sign in to comment.