aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG2
-rwxr-xr-xactionpack/Rakefile2
-rw-r--r--actionpack/lib/action_pack/version.rb4
3 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index c3f094b3d0..8335e6e074 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.11.0* (November 7th, 2005)
* Added request as instance method to views, so you can do <%= request.env["HTTP_REFERER"] %>, just like you can already access response, session, and the likes [DHH]
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index a90b2f2db2..15b85042d4 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -62,7 +62,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
- s.add_dependency('activesupport', '= 1.2.2' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.2.3' + 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 ca4b31c827..311fdc0809 100644
--- a/actionpack/lib/action_pack/version.rb
+++ b/actionpack/lib/action_pack/version.rb
@@ -1,8 +1,8 @@
module ActionPack
module Version #:nodoc:
MAJOR = 1
- MINOR = 10
- TINY = 2
+ MINOR = 11
+ TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end