From 7117abdfc794d4b3449c33f0c0733bab0e720612 Mon Sep 17 00:00:00 2001 From: Ian White Date: Mon, 20 Oct 2008 09:14:27 +1100 Subject: [PATCH] Updated changelog, tagged 0.2.2 --- CHANGELOG | 2 ++ lib/ardes/response_for.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 14c3879..fca09c5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,5 @@ +* 0.2.2 - Fixed bug where response_for would clobber a respond_to if if the respond_to relied on default render [thanks Tom Stuart for the bug report] + * Added VERSION introspection, this is 0.2.1 * To facilitate making reusable chunks of actions and responses, simply extend Ardes::ResponsesModule into diff --git a/lib/ardes/response_for.rb b/lib/ardes/response_for.rb index d9c9ff2..6dc4408 100644 --- a/lib/ardes/response_for.rb +++ b/lib/ardes/response_for.rb @@ -173,7 +173,7 @@ def respond_with_response_for module VERSION #:nodoc: MAJOR = 0 MINOR = 2 - TINY = 1 + TINY = 2 STRING = [MAJOR, MINOR, TINY].join('.') end