Changeset 3250
- Timestamp:
- 12/08/05 05:56:23 (3 years ago)
- Files:
-
- branches/stable/actionmailer/CHANGELOG (modified) (1 diff)
- branches/stable/actionmailer/lib/action_mailer/version.rb (modified) (1 diff)
- branches/stable/actionmailer/Rakefile (modified) (1 diff)
- branches/stable/actionpack/CHANGELOG (modified) (1 diff)
- branches/stable/actionpack/lib/action_pack/version.rb (modified) (1 diff)
- branches/stable/actionpack/Rakefile (modified) (1 diff)
- branches/stable/actionwebservice/CHANGELOG (modified) (2 diffs)
- branches/stable/actionwebservice/lib/action_web_service/version.rb (modified) (1 diff)
- branches/stable/actionwebservice/Rakefile (modified) (1 diff)
- branches/stable/activerecord/CHANGELOG (modified) (1 diff)
- branches/stable/activerecord/lib/active_record/version.rb (modified) (1 diff)
- branches/stable/activerecord/Rakefile (modified) (1 diff)
- branches/stable/activesupport/CHANGELOG (modified) (1 diff)
- branches/stable/activesupport/lib/active_support/version.rb (modified) (1 diff)
- branches/stable/railties/CHANGELOG (modified) (2 diffs)
- branches/stable/railties/lib/rails_version.rb (modified) (1 diff)
- branches/stable/railties/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/stable/actionmailer/CHANGELOG
r3066 r3250 1 *1.1.4* (December 7th, 2005) 2 1 3 * Rename Version constant to VERSION. #2802 [Marcel Molina Jr.] 4 2 5 3 6 *1.1.3* (November 7th, 2005) branches/stable/actionmailer/lib/action_mailer/version.rb
r3066 r3250 3 3 MAJOR = 1 4 4 MINOR = 1 5 TINY = 35 TINY = 4 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/stable/actionmailer/Rakefile
r3066 r3250 54 54 s.homepage = "http://www.rubyonrails.org" 55 55 56 s.add_dependency('actionpack', '= 1.11. 0' + PKG_BUILD)56 s.add_dependency('actionpack', '= 1.11.1' + PKG_BUILD) 57 57 58 58 s.has_rdoc = true branches/stable/actionpack/CHANGELOG
r3238 r3250 1 * SVN*1 *1.11.1* (December 7th, 2005) 2 2 3 3 * More robust relative url root discovery for SCGI compatibility. This solves the 'SCGI routes problem' -- you no longer need to prefix all your routes with the name of the SCGI mountpoint. #3070 [Dave Ringoen] branches/stable/actionpack/lib/action_pack/version.rb
r3066 r3250 3 3 MAJOR = 1 4 4 MINOR = 11 5 TINY = 05 TINY = 1 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/stable/actionpack/Rakefile
r3066 r3250 63 63 s.requirements << 'none' 64 64 65 s.add_dependency('activesupport', '= 1.2. 3' + PKG_BUILD)65 s.add_dependency('activesupport', '= 1.2.4' + PKG_BUILD) 66 66 67 67 s.require_path = 'lib' branches/stable/actionwebservice/CHANGELOG
r3068 r3250 1 * SVN*1 *0.9.4* (December 7th, 2005) 2 2 3 3 * Update from LGPL to MIT license as per Minero Aoki's permission. [Marcel Molina Jr.] … … 6 6 7 7 * Fix that XML-RPC date/time values did not have well-defined behaviour (#2516, #2534). This fix has one caveat, in that we can't support pre-1970 dates from XML-RPC clients. 8 8 9 9 10 *0.9.3* (November 7th, 2005) branches/stable/actionwebservice/lib/action_web_service/version.rb
r3066 r3250 3 3 MAJOR = 0 4 4 MINOR = 9 5 TINY = 35 TINY = 4 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/stable/actionwebservice/Rakefile
r3066 r3250 64 64 s.homepage = "http://www.rubyonrails.org" 65 65 66 s.add_dependency('actionpack', '= 1.11. 0' + PKG_BUILD)67 s.add_dependency('activerecord', '= 1.13. 0' + PKG_BUILD)66 s.add_dependency('actionpack', '= 1.11.1' + PKG_BUILD) 67 s.add_dependency('activerecord', '= 1.13.1' + PKG_BUILD) 68 68 69 69 s.has_rdoc = true branches/stable/activerecord/CHANGELOG
r3247 r3250 1 * SVN*1 *1.13.1* (December 7th, 2005) 2 2 3 3 * MySQL: more robust test for nullified result hashes. #3124 [Stefan Kaes] branches/stable/activerecord/lib/active_record/version.rb
r3066 r3250 3 3 MAJOR = 1 4 4 MINOR = 13 5 TINY = 05 TINY = 1 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/stable/activerecord/Rakefile
r3177 r3250 107 107 end 108 108 109 s.add_dependency('activesupport', '= 1.2. 3' + PKG_BUILD)109 s.add_dependency('activesupport', '= 1.2.4' + PKG_BUILD) 110 110 111 111 s.files.delete "test/fixtures/fixture_database.sqlite" branches/stable/activesupport/CHANGELOG
r3066 r3250 1 * SVN*1 *1.2.4* (December 7th, 2005) 2 2 3 3 * Rename Version constant to VERSION. #2802 [Marcel Molina Jr.] 4 4 5 5 6 *1.2.3* (November 7th, 2005) branches/stable/activesupport/lib/active_support/version.rb
r3066 r3250 3 3 MAJOR = 1 4 4 MINOR = 2 5 TINY = 35 TINY = 4 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/stable/railties/CHANGELOG
r3224 r3250 1 * SVN*1 *0.14.4 (RC5)* (December 7th, 2005) 2 2 3 3 * Add builtin/ to the gemspec. Closes #3047. [Nicholas Seckar, Sam Stephenson] … … 48 48 49 49 * Added an omnipresent RailsInfoController with a properties action that delivers an HTML rendering of Rails::Info (but only when local_request? is true). Added a new default index.html which fetches this with Ajax. [Sam Stephenson] 50 50 51 51 52 *0.14.3 (RC4)* (November 7th, 2005) branches/stable/railties/lib/rails_version.rb
r3066 r3250 3 3 MAJOR = 0 4 4 MINOR = 14 5 TINY = 35 TINY = 4 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/stable/railties/Rakefile
r3224 r3250 274 274 275 275 s.add_dependency('rake', '>= 0.6.2') 276 s.add_dependency('activesupport', '= 1.2. 3' + PKG_BUILD)277 s.add_dependency('activerecord', '= 1.13. 0' + PKG_BUILD)278 s.add_dependency('actionpack', '= 1.11. 0' + PKG_BUILD)279 s.add_dependency('actionmailer', '= 1.1. 3' + PKG_BUILD)280 s.add_dependency('actionwebservice', '= 0.9. 3' + PKG_BUILD)276 s.add_dependency('activesupport', '= 1.2.4' + PKG_BUILD) 277 s.add_dependency('activerecord', '= 1.13.1' + PKG_BUILD) 278 s.add_dependency('actionpack', '= 1.11.1' + PKG_BUILD) 279 s.add_dependency('actionmailer', '= 1.1.4' + PKG_BUILD) 280 s.add_dependency('actionwebservice', '= 0.9.4' + PKG_BUILD) 281 281 282 282 s.rdoc_options << '--exclude' << '.'