diff options
Diffstat (limited to 'railties')
-rw-r--r-- | railties/CHANGELOG | 6 | ||||
-rw-r--r-- | railties/Rakefile | 10 | ||||
-rw-r--r-- | railties/lib/rails_version.rb | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 86e318a8b5..18b42884ab 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*0.14.2 (RC3)* (October 26th, 2005) * Constants set in the development/test/production environment file are set in Object @@ -7,7 +7,7 @@ * Include tasks from vendor/plugins/*/tasks in the Rakefile #2545 [Rick Olson] -*0.14.1* (October 19th, 2005) +*0.14.1 (RC2)* (October 19th, 2005) * Don't clean RAILS_ROOT on windows @@ -16,7 +16,7 @@ * Upgraded to Active Record 1.12.1 and Action Pack 1.10.1 -*0.14.0* (October 16th, 2005) +*0.14.0 (RC1)* (October 16th, 2005) * Moved generator folder from RAILS_ROOT/generators to RAILS_ROOT/lib/generators [Tobias Luetke] diff --git a/railties/Rakefile b/railties/Rakefile index c3c6033736..53b965578f 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -273,11 +273,11 @@ spec = Gem::Specification.new do |s| EOF s.add_dependency('rake', '>= 0.6.2') - s.add_dependency('activesupport', '= 1.2.1' + PKG_BUILD) - s.add_dependency('activerecord', '= 1.12.1' + PKG_BUILD) - s.add_dependency('actionpack', '= 1.10.1' + PKG_BUILD) - s.add_dependency('actionmailer', '= 1.1.1' + PKG_BUILD) - s.add_dependency('actionwebservice', '= 0.9.1' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.2.2' + PKG_BUILD) + s.add_dependency('activerecord', '= 1.12.2' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.10.2' + PKG_BUILD) + s.add_dependency('actionmailer', '= 1.1.2' + PKG_BUILD) + s.add_dependency('actionwebservice', '= 0.9.2' + 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 03e4c10ef1..19f907258c 100644 --- a/railties/lib/rails_version.rb +++ b/railties/lib/rails_version.rb @@ -2,7 +2,7 @@ module Rails module Version #:nodoc: MAJOR = 0 MINOR = 14 - TINY = 1 + TINY = 2 STRING = [MAJOR, MINOR, TINY].join('.') end |