Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8321

Show
Ignore:
Timestamp:
12/06/07 18:12:48 (9 months ago)
Author:
david
Message:

Preparing for release shortly

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionmailer/CHANGELOG

    r8233 r8321  
    1 *2.0.0 [RC2]* (November 28th, 2007) 
     1*2.0.0* (December 6th, 2007) 
    22 
    33* Update ActionMailer so it treats ActionView the same way that ActionController does.  Closes #10244 [rick] 
  • trunk/actionmailer/lib/action_mailer/version.rb

    r8233 r8321  
    11module ActionMailer 
    22  module VERSION #:nodoc: 
    3     MAJOR = 1 
    4     MINOR = 99 
    5     TINY  = 1 
     3    MAJOR = 2 
     4    MINOR = 0 
     5    TINY  = 0 
    66 
    77    STRING = [MAJOR, MINOR, TINY].join('.') 
  • trunk/actionmailer/Rakefile

    r8301 r8321  
    5656  s.homepage = "http://www.rubyonrails.org" 
    5757 
    58   s.add_dependency('actionpack', '= 1.99.1' + PKG_BUILD) 
     58  s.add_dependency('actionpack', '= 2.0.0' + PKG_BUILD) 
    5959 
    6060  s.has_rdoc = true 
  • trunk/actionpack/CHANGELOG

    r8318 r8321  
    1 *SVN* 
     1*2.0.0* (December 6th, 2007) 
    22 
    33* Fixed send_file/binary_content for testing #8044 [tolsen] 
     
    1414 
    1515* Fixed that verification violations with no specified action didn't halt the chain (now they do with a 400 Bad Request) [DHH] 
    16  
    17  
    18 *2.0.0 [RC2]* (November 28th, 2007) 
    1916 
    2017* Raise UnknownHttpMethod exception for unknown HTTP methods. Closes #10303 [tarmo] 
  • trunk/actionpack/lib/action_pack/version.rb

    r8233 r8321  
    11module ActionPack #:nodoc: 
    22  module VERSION #:nodoc: 
    3     MAJOR = 1 
    4     MINOR = 99 
    5     TINY  = 1 
     3    MAJOR = 2 
     4    MINOR = 0 
     5    TINY  = 0 
    66 
    77    STRING = [MAJOR, MINOR, TINY].join('.') 
  • trunk/actionpack/Rakefile

    r8233 r8321  
    7777  s.requirements << 'none' 
    7878 
    79   s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD) 
     79  s.add_dependency('activesupport', '= 2.0.0' + PKG_BUILD) 
    8080 
    8181  s.require_path = 'lib' 
  • trunk/activerecord/CHANGELOG

    r8319 r8321  
    1 *SVN* 
     1*2.0.0* (December 6th, 2007) 
    22 
    33* Fixed that the truncation of strings longer than 50 chars should use inspect so newlines etc are escaped #10385 [norbert] 
     
    2020 
    2121* Fix documentation typo introduced in [8250]. Closes #10339 [Henrik N] 
    22  
    23  
    24 *2.0.0 [RC2]* (November 28th, 2007) 
    2522 
    2623* Foxy fixtures: support single-table inheritance.  #10234 [tom] 
  • trunk/activerecord/lib/active_record/version.rb

    r8233 r8321  
    11module ActiveRecord 
    22  module VERSION #:nodoc: 
    3     MAJOR = 1 
    4     MINOR = 99 
    5     TINY  = 1 
     3    MAJOR = 2 
     4    MINOR = 0 
     5    TINY  = 0 
    66 
    77    STRING = [MAJOR, MINOR, TINY].join('.') 
  • trunk/activerecord/Rakefile

    r8233 r8321  
    173173  end 
    174174 
    175   s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD) 
     175  s.add_dependency('activesupport', '= 2.0.0' + PKG_BUILD) 
    176176 
    177177  s.files.delete "test/fixtures/fixture_database.sqlite" 
  • trunk/activeresource/CHANGELOG

    r8233 r8321  
    1 *2.0.0 [RC2]* (November 28th, 2007) 
     1*2.0.0* (December 6th, 2007) 
    22 
    33* Don't cache net/http object so that ActiveResource is more thread-safe.  Closes #10142 [kou] 
    44 
    55* Update XML documentation examples to include explicit type attributes. Closes #9754 [hasmanyjosh] 
    6  
    7  
    8 *2.0.0 [Preview Release]* (September 29th, 2007) 
    96 
    107* Added one-off declarations of mock behavior [DHH]. Example: 
  • trunk/activeresource/lib/active_resource/version.rb

    r8233 r8321  
    11module ActiveResource 
    22  module VERSION #:nodoc: 
    3     MAJOR = 1 
    4     MINOR = 99 
    5     TINY  = 1 
     3    MAJOR = 2 
     4    MINOR = 0 
     5    TINY  = 0 
    66 
    77    STRING = [MAJOR, MINOR, TINY].join('.') 
  • trunk/activeresource/Rakefile

    r8233 r8321  
    6363  end 
    6464   
    65   s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD) 
     65  s.add_dependency('activesupport', '= 2.0.0' + PKG_BUILD) 
    6666 
    6767  s.require_path = 'lib' 
  • trunk/activesupport/CHANGELOG

    r8233 r8321  
    1 *2.0.0 [RC2]* (November 28th, 2007) 
     1*2.0.0* (December 6th, 2007) 
    22 
    33* Added Array#from and Array#to that behaves just from String#from and String#to [DHH] 
     
    6363 
    6464* Fixed Date#xmlschema for dates outside the range of what can be created with Time #9744 [Geoff Buesing] 
    65  
    66  
    67 *2.0.0 [Preview Release]* (September 29th, 2007) 
    6865 
    6966* Fixed that La Paz was included in -25200 and -14400 offsets when it should only be in -14400 #9735 [bermi] 
  • trunk/activesupport/lib/active_support/version.rb

    r8233 r8321  
    11module ActiveSupport 
    22  module VERSION #:nodoc: 
    3     MAJOR = 1 
    4     MINOR = 99 
    5     TINY  = 1 
     3    MAJOR = 2 
     4    MINOR = 0 
     5    TINY  = 0 
    66 
    77    STRING = [MAJOR, MINOR, TINY].join('.') 
  • trunk/railties/CHANGELOG

    r8303 r8321  
    1 *SVN* 
     1*2.0.0* (December 6th, 2007) 
    22 
    33* Add warning to documentation about using transactional fixtures when the code under test uses transactions itself. Closes #7548 [thijsv] 
     
    1010 
    1111* Generated fixtures should not specify ids since theyre expected to be foxy fixtures #10330 [jbarnette] 
    12  
    13  
    14 *2.0.0 [RC2]* (November 28th, 2007) 
    1512 
    1613* Update to Prototype -r8232.  [sam] 
  • trunk/railties/lib/rails/version.rb

    r8233 r8321  
    11module Rails 
    22  module VERSION #:nodoc: 
    3     MAJOR = 1 
    4     MINOR = 99 
    5     TINY  = 1 
     3    MAJOR = 2 
     4    MINOR = 0 
     5    TINY  = 0 
    66 
    77    STRING = [MAJOR, MINOR, TINY].join('.') 
  • trunk/railties/Rakefile

    r8233 r8321  
    313313 
    314314  s.add_dependency('rake', '>= 0.7.2') 
    315   s.add_dependency('activesupport',    '= 1.99.1' + PKG_BUILD) 
    316   s.add_dependency('activerecord',     '= 1.99.1' + PKG_BUILD) 
    317   s.add_dependency('actionpack',       '= 1.99.1' + PKG_BUILD) 
    318   s.add_dependency('actionmailer',     '= 1.99.1' + PKG_BUILD) 
    319   s.add_dependency('activeresource',   '= 1.99.1' + PKG_BUILD) 
     315  s.add_dependency('activesupport',    '= 2.0.0' + PKG_BUILD) 
     316  s.add_dependency('activerecord',     '= 2.0.0' + PKG_BUILD) 
     317  s.add_dependency('actionpack',       '= 2.0.0' + PKG_BUILD) 
     318  s.add_dependency('actionmailer',     '= 2.0.0' + PKG_BUILD) 
     319  s.add_dependency('activeresource',   '= 2.0.0' + PKG_BUILD) 
    320320 
    321321  s.rdoc_options << '--exclude' << '.'