aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2010-04-05 16:07:44 -0700
committerDavid Heinemeier Hansson <david@loudthinking.com>2010-04-05 16:07:44 -0700
commitf8730e5ce6bba4de7639ac09c6c193458038f748 (patch)
tree7b0609cc52a6eccc5d0461769bc134f78204b2e9 /actionpack/CHANGELOG
parent40a3e6739092bcfc568a5df645db0fd2783e8a22 (diff)
downloadrails-f8730e5ce6bba4de7639ac09c6c193458038f748.tar.gz
rails-f8730e5ce6bba4de7639ac09c6c193458038f748.tar.bz2
rails-f8730e5ce6bba4de7639ac09c6c193458038f748.zip
Added all the new HTML5 form types as individual form tag methods (search, url, number, etc) (Closes #3646) [Stephen Celis]
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG3
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index c4ebedf1b0..46210690cd 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*Rails 3.0.0 [Edge] (pending)*
+* Added all the new HTML5 form types as individual form tag methods (search, url, number, etc) #3646 [Stephen Celis]
+
* Changed the object used in routing constraints to be an instance of
ActionDispatch::Request rather than Rack::Request
@@ -13,6 +15,7 @@
"HEAD" and #request_method returns "GET" in HEAD requests). This
is for compatibility with Rack::Request
+
*Rails 3.0.0 [beta 2] (April 1st, 2010)*
* #concat is now deprecated in favor of using <%= %> helpers [YK]