aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
Diffstat (limited to 'railties')
-rw-r--r--railties/CHANGELOG2
-rw-r--r--railties/Rakefile12
-rw-r--r--railties/lib/rails/version.rb2
3 files changed, 8 insertions, 8 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 7f427bfd4f..f647c083ad 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.1.1* (April 6th, 2005)
* Update to Prototype 1.5.0_rc0 [Sam Stephenson]
diff --git a/railties/Rakefile b/railties/Rakefile
index c2ad419eae..db08f964b6 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -277,12 +277,12 @@ spec = Gem::Specification.new do |s|
on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
EOF
- s.add_dependency('rake', '>= 0.7.0')
- s.add_dependency('activesupport', '= 1.3.0' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.14.0' + PKG_BUILD)
- s.add_dependency('actionpack', '= 1.12.0' + PKG_BUILD)
- s.add_dependency('actionmailer', '= 1.2.0' + PKG_BUILD)
- s.add_dependency('actionwebservice', '= 1.1.0' + PKG_BUILD)
+ s.add_dependency('rake', '>= 0.7.1')
+ s.add_dependency('activesupport', '= 1.3.1' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.14.1' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.12.1' + PKG_BUILD)
+ s.add_dependency('actionmailer', '= 1.2.1' + PKG_BUILD)
+ s.add_dependency('actionwebservice', '= 1.1.1' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false
diff --git a/railties/lib/rails/version.rb b/railties/lib/rails/version.rb
index d48ace3a20..ec2ff4dba3 100644
--- a/railties/lib/rails/version.rb
+++ b/railties/lib/rails/version.rb
@@ -2,7 +2,7 @@ module Rails
module VERSION #:nodoc:
MAJOR = 1
MINOR = 1
- TINY = 0
+ TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end