Changeset 6124
- Timestamp:
- 02/04/07 22:12:33 (4 years ago)
- Files:
-
- branches/1-2-stable/actionmailer/CHANGELOG (modified) (1 diff)
- branches/1-2-stable/actionmailer/lib/action_mailer/version.rb (modified) (1 diff)
- branches/1-2-stable/actionmailer/Rakefile (modified) (1 diff)
- branches/1-2-stable/actionpack/CHANGELOG (modified) (1 diff)
- branches/1-2-stable/actionpack/lib/action_pack/version.rb (modified) (1 diff)
- branches/1-2-stable/actionpack/Rakefile (modified) (1 diff)
- branches/1-2-stable/actionwebservice/CHANGELOG (modified) (1 diff)
- branches/1-2-stable/actionwebservice/lib/action_web_service/version.rb (modified) (1 diff)
- branches/1-2-stable/actionwebservice/Rakefile (modified) (1 diff)
- branches/1-2-stable/activerecord/CHANGELOG (modified) (1 diff)
- branches/1-2-stable/activerecord/lib/active_record/version.rb (modified) (1 diff)
- branches/1-2-stable/activerecord/Rakefile (modified) (1 diff)
- branches/1-2-stable/activesupport/CHANGELOG (modified) (2 diffs)
- branches/1-2-stable/activesupport/lib/active_support/version.rb (modified) (1 diff)
- branches/1-2-stable/railties/CHANGELOG (modified) (1 diff)
- branches/1-2-stable/railties/lib/rails/version.rb (modified) (1 diff)
- branches/1-2-stable/railties/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1-2-stable/actionmailer/CHANGELOG
r6094 r6124 1 * SVN*1 *1.13.2* (February 4th, 2007) 2 2 3 3 * Deprecate server_settings renaming it to smtp_settings, add sendmail_settings to allow you to override the arguments to and location of the sendmail executable. [Koz] 4 4 5 5 6 *1.3.1* (January 16th, 2007) branches/1-2-stable/actionmailer/lib/action_mailer/version.rb
r5984 r6124 3 3 MAJOR = 1 4 4 MINOR = 3 5 TINY = 15 TINY = 2 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/1-2-stable/actionmailer/Rakefile
r5984 r6124 55 55 s.homepage = "http://www.rubyonrails.org" 56 56 57 s.add_dependency('actionpack', '= 1.13. 1' + PKG_BUILD)57 s.add_dependency('actionpack', '= 1.13.2' + PKG_BUILD) 58 58 59 59 s.has_rdoc = true branches/1-2-stable/actionpack/CHANGELOG
r6118 r6124 1 * SVN*1 *1.13.2* (February 4th, 2007) 2 2 3 3 * Add much-needed html-scanner tests. Fixed CDATA parsing bug. [Rick] branches/1-2-stable/actionpack/lib/action_pack/version.rb
r5984 r6124 3 3 MAJOR = 1 4 4 MINOR = 13 5 TINY = 15 TINY = 2 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/1-2-stable/actionpack/Rakefile
r5968 r6124 76 76 s.requirements << 'none' 77 77 78 s.add_dependency('activesupport', '= 1.4. 0' + PKG_BUILD)78 s.add_dependency('activesupport', '= 1.4.1' + PKG_BUILD) 79 79 80 80 s.require_path = 'lib' branches/1-2-stable/actionwebservice/CHANGELOG
r5984 r6124 1 *1.2.2* (Feburary 4th, 2007) 2 3 * Depend on Action Pack 1.13.2 4 5 1 6 *1.2.1* (January 16th, 2007) 2 7 branches/1-2-stable/actionwebservice/lib/action_web_service/version.rb
r5984 r6124 3 3 MAJOR = 1 4 4 MINOR = 2 5 TINY = 15 TINY = 2 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/1-2-stable/actionwebservice/Rakefile
r5984 r6124 72 72 s.homepage = "http://www.rubyonrails.org" 73 73 74 s.add_dependency('actionpack', '= 1.13. 1' + PKG_BUILD)75 s.add_dependency('activerecord', '= 1.15. 1' + PKG_BUILD)74 s.add_dependency('actionpack', '= 1.13.2' + PKG_BUILD) 75 s.add_dependency('activerecord', '= 1.15.2' + PKG_BUILD) 76 76 77 77 s.has_rdoc = true branches/1-2-stable/activerecord/CHANGELOG
r6122 r6124 1 * SVN*1 *1.15.2* (February 4th, 2007) 2 2 3 3 * Pass a range in :conditions to use the SQL BETWEEN operator. #6974 [dcmanges] branches/1-2-stable/activerecord/lib/active_record/version.rb
r5984 r6124 3 3 MAJOR = 1 4 4 MINOR = 15 5 TINY = 15 TINY = 2 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/1-2-stable/activerecord/Rakefile
r5968 r6124 152 152 end 153 153 154 s.add_dependency('activesupport', '= 1.4. 0' + PKG_BUILD)154 s.add_dependency('activesupport', '= 1.4.1' + PKG_BUILD) 155 155 156 156 s.files.delete "test/fixtures/fixture_database.sqlite" branches/1-2-stable/activesupport/CHANGELOG
r6112 r6124 1 * SVN*1 *1.4.1* (February 4th, 2007) 2 2 3 3 * Optimize Class Inheritable Attributes so that unnecessary hashes are not created. [Bruce Perens] … … 6 6 7 7 * Full test coverage for Inflector. #7228 [Dan Kubb] 8 8 9 9 10 *1.4.0* (January 16th, 2007) branches/1-2-stable/activesupport/lib/active_support/version.rb
r5968 r6124 3 3 MAJOR = 1 4 4 MINOR = 4 5 TINY = 05 TINY = 1 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/1-2-stable/railties/CHANGELOG
r6119 r6124 1 * SVN*1 *1.2.2* (February 4th, 2007) 2 2 3 3 * Fix gem deprecation warnings, which also means depending on RubyGems 0.9.0+ [Chad Fowler] branches/1-2-stable/railties/lib/rails/version.rb
r5989 r6124 3 3 MAJOR = 1 4 4 MINOR = 2 5 TINY = 15 TINY = 2 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/1-2-stable/railties/Rakefile
r5984 r6124 289 289 290 290 s.add_dependency('rake', '>= 0.7.1') 291 s.add_dependency('activesupport', '= 1.4. 0' + PKG_BUILD)292 s.add_dependency('activerecord', '= 1.15. 1' + PKG_BUILD)293 s.add_dependency('actionpack', '= 1.13. 1' + PKG_BUILD)294 s.add_dependency('actionmailer', '= 1.3. 1' + PKG_BUILD)295 s.add_dependency('actionwebservice', '= 1.2. 1' + PKG_BUILD)291 s.add_dependency('activesupport', '= 1.4.1' + PKG_BUILD) 292 s.add_dependency('activerecord', '= 1.15.2' + PKG_BUILD) 293 s.add_dependency('actionpack', '= 1.13.2' + PKG_BUILD) 294 s.add_dependency('actionmailer', '= 1.3.2' + PKG_BUILD) 295 s.add_dependency('actionwebservice', '= 1.2.2' + PKG_BUILD) 296 296 297 297 s.rdoc_options << '--exclude' << '.'