diff --git a/Readme.markdown b/Readme.markdown index 4eda3d6..6a31ae3 100644 --- a/Readme.markdown +++ b/Readme.markdown @@ -22,8 +22,9 @@ ## What's New -### Version 0.9.2 +### Version 0.9.3 +* Helpers are available from the decorator class level, so you could call `ArticleDecorator.new_article_link` * Automatically generate a named accessor for the wrapped object, so now inside of `ArticleDecorator` you can use `article` instead of just `model` * Removed the `lazy_helpers` method to favor using `include Draper::LazyHelpers` * Refactored how methods are selected for delegation to the wrapped model diff --git a/lib/draper/version.rb b/lib/draper/version.rb index b5c9ecf..ce43e65 100644 --- a/lib/draper/version.rb +++ b/lib/draper/version.rb @@ -1,3 +1,3 @@ module Draper - VERSION = "0.9.2" + VERSION = "0.9.3" end