aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-03-28 05:03:05 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-03-28 05:03:05 +0000
commit479b4fb5d998aebcec6872f1514142e4f387fd23 (patch)
tree2b775c2ccdab884d8c17e3815e5ac05e0c444d23 /actionpack
parent9babb2014ba101e8c4a7b7808c3e3624ee7bb8d7 (diff)
downloadrails-479b4fb5d998aebcec6872f1514142e4f387fd23.tar.gz
rails-479b4fb5d998aebcec6872f1514142e4f387fd23.tar.bz2
rails-479b4fb5d998aebcec6872f1514142e4f387fd23.zip
Made ready for release
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4088 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG6
-rwxr-xr-xactionpack/Rakefile2
-rw-r--r--actionpack/lib/action_pack/version.rb4
3 files changed, 6 insertions, 6 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 2cbd2acbed..82294a9299 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.12.0* (March 27th, 2005)
* Add documentation for respond_to. [Jamis Buck]
@@ -410,14 +410,14 @@ Default YAML web services were retired, ActionController::Base.param_parsers car
* Added FormHelper#form_for and FormHelper#fields_for that makes it easier to work with forms for single objects also if they don't reside in instance variables [DHH]. Examples:
- <% form_for :person => @person, :url => { :action => "update" } do |f| %>
+ <% form_for :person, @person, :url => { :action => "update" } do |f| %>
First name: <%= f.text_field :first_name %>
Last name : <%= f.text_field :last_name %>
Biography : <%= f.text_area :biography %>
Admin? : <%= f.check_box :admin %>
<% end %>
- <% form_for :person => person, :url => { :action => "update" } do |person_form| %>
+ <% form_for :person, person, :url => { :action => "update" } do |person_form| %>
First name: <%= person_form.text_field :first_name %>
Last name : <%= person_form.text_field :last_name %>
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 6be7e10407..f9b9acbb3b 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -68,7 +68,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
- s.add_dependency('activesupport', '= 1.2.5' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.3.0' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'
diff --git a/actionpack/lib/action_pack/version.rb b/actionpack/lib/action_pack/version.rb
index c90816aa98..8144599cbe 100644
--- a/actionpack/lib/action_pack/version.rb
+++ b/actionpack/lib/action_pack/version.rb
@@ -1,8 +1,8 @@
module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 1
- MINOR = 11
- TINY = 2
+ MINOR = 12
+ TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end