aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack')
-rwxr-xr-xactionpack/Rakefile4
-rw-r--r--actionpack/lib/action_pack/version.rb4
2 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 2f6bba80fe..b108a276a4 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -76,7 +76,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
- s.add_dependency('activesupport', '= 1.4.2' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.4.3' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'
@@ -150,4 +150,4 @@ task :release => [ :package ] do
rubyforge = RubyForge.new
rubyforge.login
rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
-end \ No newline at end of file
+end
diff --git a/actionpack/lib/action_pack/version.rb b/actionpack/lib/action_pack/version.rb
index 09eaef6eda..76dacd4353 100644
--- a/actionpack/lib/action_pack/version.rb
+++ b/actionpack/lib/action_pack/version.rb
@@ -2,8 +2,8 @@ module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 1
MINOR = 13
- TINY = 3
-
+ TINY = 4
+
STRING = [MAJOR, MINOR, TINY].join('.')
end
end