GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Fork of rails/rails
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/ddollar/rails.git
Preparing for release shortly

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8321 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Thu Dec 06 10:12:48 -0800 2007
commit  729741a3fa91fb92a60795a3c9c3e3928723023c
tree    82dcd9f67797eade66c20417cb85c7f09af61d7d
parent  e16ecaf84c05b054a8ec3b776b3223880edda3d4
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-*2.0.0 [RC2]* (November 28th, 2007)
0
+*2.0.0* (December 6th, 2007)
0
 
0
 * Update ActionMailer so it treats ActionView the same way that ActionController does. Closes #10244 [rick]
0
 
...
55
56
57
58
 
59
60
61
...
55
56
57
 
58
59
60
61
0
@@ -55,7 +55,7 @@ spec = Gem::Specification.new do |s|
0
   s.rubyforge_project = "actionmailer"
0
   s.homepage = "http://www.rubyonrails.org"
0
 
0
- s.add_dependency('actionpack', '= 1.99.1' + PKG_BUILD)
0
+ s.add_dependency('actionpack', '= 2.0.0' + PKG_BUILD)
0
 
0
   s.has_rdoc = true
0
   s.requirements << 'none'
...
1
2
3
4
5
 
 
 
6
7
8
...
1
2
 
 
 
3
4
5
6
7
8
0
@@ -1,8 +1,8 @@
0
 module ActionMailer
0
   module VERSION #:nodoc:
0
- MAJOR = 1
0
- MINOR = 99
0
- TINY = 1
0
+ MAJOR = 2
0
+ MINOR = 0
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
...
14
15
16
17
18
19
20
21
22
...
 
1
2
3
4
...
14
15
16
 
 
 
17
18
19
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*2.0.0* (December 6th, 2007)
0
 
0
 * Fixed send_file/binary_content for testing #8044 [tolsen]
0
 
0
@@ -14,9 +14,6 @@
0
 
0
 * Fixed that verification violations with no specified action didn't halt the chain (now they do with a 400 Bad Request) [DHH]
0
 
0
-
0
-*2.0.0 [RC2]* (November 28th, 2007)
0
-
0
 * Raise UnknownHttpMethod exception for unknown HTTP methods. Closes #10303 [tarmo]
0
 
0
 * Update to Prototype -r8232. [sam]
...
76
77
78
79
 
80
81
82
...
76
77
78
 
79
80
81
82
0
@@ -76,7 +76,7 @@ spec = Gem::Specification.new do |s|
0
   s.has_rdoc = true
0
   s.requirements << 'none'
0
 
0
- s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 2.0.0' + PKG_BUILD)
0
 
0
   s.require_path = 'lib'
0
   s.autorequire = 'action_controller'
...
1
2
3
4
5
 
 
 
6
7
8
...
1
2
 
 
 
3
4
5
6
7
8
0
@@ -1,8 +1,8 @@
0
 module ActionPack #:nodoc:
0
   module VERSION #:nodoc:
0
- MAJOR = 1
0
- MINOR = 99
0
- TINY = 1
0
+ MAJOR = 2
0
+ MINOR = 0
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
...
20
21
22
23
24
25
26
27
28
...
 
1
2
3
4
...
20
21
22
 
 
 
23
24
25
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*2.0.0* (December 6th, 2007)
0
 
0
 * Fixed that the truncation of strings longer than 50 chars should use inspect so newlines etc are escaped #10385 [norbert]
0
 
0
@@ -20,9 +20,6 @@
0
 
0
 * Fix documentation typo introduced in [8250]. Closes #10339 [Henrik N]
0
 
0
-
0
-*2.0.0 [RC2]* (November 28th, 2007)
0
-
0
 * Foxy fixtures: support single-table inheritance. #10234 [tom]
0
 
0
 * Foxy fixtures: allow mixed usage to make migration easier and more attractive. #10004 [lotswholetime]
...
172
173
174
175
 
176
177
178
...
172
173
174
 
175
176
177
178
0
@@ -172,7 +172,7 @@ spec = Gem::Specification.new do |s|
0
     s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
0
   end
0
 
0
- s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 2.0.0' + PKG_BUILD)
0
 
0
   s.files.delete "test/fixtures/fixture_database.sqlite"
0
   s.files.delete "test/fixtures/fixture_database_2.sqlite"
...
1
2
3
4
5
 
 
 
6
7
8
...
1
2
 
 
 
3
4
5
6
7
8
0
@@ -1,8 +1,8 @@
0
 module ActiveRecord
0
   module VERSION #:nodoc:
0
- MAJOR = 1
0
- MINOR = 99
0
- TINY = 1
0
+ MAJOR = 2
0
+ MINOR = 0
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
5
6
7
8
9
10
11
12
...
 
1
2
3
4
5
6
 
 
 
7
8
9
0
@@ -1,12 +1,9 @@
0
-*2.0.0 [RC2]* (November 28th, 2007)
0
+*2.0.0* (December 6th, 2007)
0
 
0
 * Don't cache net/http object so that ActiveResource is more thread-safe. Closes #10142 [kou]
0
 
0
 * Update XML documentation examples to include explicit type attributes. Closes #9754 [hasmanyjosh]
0
 
0
-
0
-*2.0.0 [Preview Release]* (September 29th, 2007)
0
-
0
 * Added one-off declarations of mock behavior [DHH]. Example:
0
 
0
     Before:
...
62
63
64
65
 
66
67
68
...
62
63
64
 
65
66
67
68
0
@@ -62,7 +62,7 @@ spec = Gem::Specification.new do |s|
0
     s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
0
   end
0
   
0
- s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 2.0.0' + PKG_BUILD)
0
 
0
   s.require_path = 'lib'
0
   s.autorequire = 'active_resource'
...
1
2
3
4
5
 
 
 
6
7
8
...
1
2
 
 
 
3
4
5
6
7
8
0
@@ -1,8 +1,8 @@
0
 module ActiveResource
0
   module VERSION #:nodoc:
0
- MAJOR = 1
0
- MINOR = 99
0
- TINY = 1
0
+ MAJOR = 2
0
+ MINOR = 0
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
...
63
64
65
66
67
68
69
70
71
...
 
1
2
3
4
...
63
64
65
 
 
 
66
67
68
0
@@ -1,4 +1,4 @@
0
-*2.0.0 [RC2]* (November 28th, 2007)
0
+*2.0.0* (December 6th, 2007)
0
 
0
 * Added Array#from and Array#to that behaves just from String#from and String#to [DHH]
0
 
0
@@ -63,9 +63,6 @@
0
 
0
 * Fixed Date#xmlschema for dates outside the range of what can be created with Time #9744 [Geoff Buesing]
0
 
0
-
0
-*2.0.0 [Preview Release]* (September 29th, 2007)
0
-
0
 * Fixed that La Paz was included in -25200 and -14400 offsets when it should only be in -14400 #9735 [bermi]
0
 
0
 * Fixed JSON encoding to use quoted keys according to the JSON standard #8762 [choonkat/chuyeow]
...
1
2
3
4
5
 
 
 
6
7
8
...
1
2
 
 
 
3
4
5
6
7
8
0
@@ -1,8 +1,8 @@
0
 module ActiveSupport
0
   module VERSION #:nodoc:
0
- MAJOR = 1
0
- MINOR = 99
0
- TINY = 1
0
+ MAJOR = 2
0
+ MINOR = 0
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
...
10
11
12
13
14
15
16
17
18
...
 
1
2
3
4
...
10
11
12
 
 
 
13
14
15
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*2.0.0* (December 6th, 2007)
0
 
0
 * Add warning to documentation about using transactional fixtures when the code under test uses transactions itself. Closes #7548 [thijsv]
0
 
0
@@ -10,9 +10,6 @@
0
 
0
 * Generated fixtures should not specify ids since theyre expected to be foxy fixtures #10330 [jbarnette]
0
 
0
-
0
-*2.0.0 [RC2]* (November 28th, 2007)
0
-
0
 * Update to Prototype -r8232. [sam]
0
 
0
 * Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later. #10286 [Hongli Lai]
...
312
313
314
315
316
317
318
319
 
 
 
 
 
320
321
322
...
312
313
314
 
 
 
 
 
315
316
317
318
319
320
321
322
0
@@ -312,11 +312,11 @@ spec = Gem::Specification.new do |s|
0
   EOF
0
 
0
   s.add_dependency('rake', '>= 0.7.2')
0
- s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD)
0
- s.add_dependency('activerecord', '= 1.99.1' + PKG_BUILD)
0
- s.add_dependency('actionpack', '= 1.99.1' + PKG_BUILD)
0
- s.add_dependency('actionmailer', '= 1.99.1' + PKG_BUILD)
0
- s.add_dependency('activeresource', '= 1.99.1' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 2.0.0' + PKG_BUILD)
0
+ s.add_dependency('activerecord', '= 2.0.0' + PKG_BUILD)
0
+ s.add_dependency('actionpack', '= 2.0.0' + PKG_BUILD)
0
+ s.add_dependency('actionmailer', '= 2.0.0' + PKG_BUILD)
0
+ s.add_dependency('activeresource', '= 2.0.0' + PKG_BUILD)
0
 
0
   s.rdoc_options << '--exclude' << '.'
0
   s.has_rdoc = false
...
1
2
3
4
5
 
 
 
6
7
8
...
1
2
 
 
 
3
4
5
6
7
8
0
@@ -1,8 +1,8 @@
0
 module Rails
0
   module VERSION #:nodoc:
0
- MAJOR = 1
0
- MINOR = 99
0
- TINY = 1
0
+ MAJOR = 2
0
+ MINOR = 0
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end

Comments

    No one has commented yet.