From 8c996beca53a7b462bbe7e1147e70770d8bf654f Mon Sep 17 00:00:00 2001 From: Andrew Crump Date: Sat, 21 Apr 2012 23:11:04 +0100 Subject: [PATCH] Bump version for release. --- CHANGELOG.md | 36 ++++++++++++++++++++++++++++++++++++ lib/foodcritic/version.rb | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbb9fa5f..7f2acb6e 100644 --- a/CHANGELOG.md +++ b/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: diff --git a/lib/foodcritic/version.rb b/lib/foodcritic/version.rb index 87f15e35..646b6e32 100644 --- a/lib/foodcritic/version.rb +++ b/lib/foodcritic/version.rb @@ -1,4 +1,4 @@ module FoodCritic # The current version of foodcritic - VERSION = '1.1.0' + VERSION = '1.2.0' end