public
Fork of rails/rails
Description: Ruby on Rails - forked for implementing I18n patch
Homepage: http://rubyonrails.org
Clone URL: git://github.com/svenfuchs/rails.git
Prepare for release of 1.2

git-svn-id: 
http://svn-commit.rubyonrails.org/rails/branches/1-2-pre-release@5968 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Tue Jan 16 20:41:02 -0800 2007
commit  a3dafb07ec64d3ae7f4fe1becf3b51105901418e
tree    a7910eee753fd148fb9da97d9f8f1ffaa2601fa0
parent  cc99f3fc188405a51d4e9d93002b5dc2ee473a3d
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-*1.3.0 RC1* (r5619, November 22nd, 2006)
0
+*1.3.0* (January 16th, 2007)
0
 
0
 * Make mime version default to 1.0. closes #2323 [ror@andreas-s.net]
0
 
...
54
55
56
57
 
58
59
60
...
54
55
56
 
57
58
59
60
0
@@ -54,7 +54,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.12.5' + PKG_BUILD)
0
+ s.add_dependency('actionpack', '= 1.13.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 = 2
0
- TINY = 5
0
+ MINOR = 3
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
+*1.13.0* (January 16th, 2007)
0
 
0
 * Allow exempt_from_layout :rhtml. #6742, #7026 [dcmanges, Squeegy]
0
 
0
@@ -20,9 +20,6 @@
0
 
0
 * [DOCS] fix reference to ActionController::Macros::AutoComplete for #text_field_with_auto_complete. Closes #2578 [Jan Prill]
0
 
0
-
0
-*1.13.0 RC2* (r5847, January 4th, 2007)
0
-
0
 * Make sure html_document is reset between integration test requests. [ctm]
0
 
0
 * Set session to an empty hash if :new_session => false and no session cookie or param is present. CGI::Session was raising an unrescued ArgumentError. [Josh Susser]
...
75
76
77
78
 
79
80
81
...
75
76
77
 
78
79
80
81
0
@@ -75,7 +75,7 @@ spec = Gem::Specification.new do |s|
0
   s.has_rdoc = true
0
   s.requirements << 'none'
0
 
0
- s.add_dependency('activesupport', '= 1.3.1' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 1.4.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 = 12
0
- TINY = 5
0
+ MINOR = 13
0
+ TINY = 0
0
     
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-*1.2.0 RC1* (r5619, November 22nd, 2006)
0
+*1.2.0* (January 16th, 2007)
0
 
0
 * Removed invocation of deprecated before_action and around_action filter methods. Corresponding before_invocation and after_invocation methods should be used instead. #6275 [Kent Sibilev]
0
 
...
71
72
73
74
75
 
 
76
77
78
...
71
72
73
 
 
74
75
76
77
78
0
@@ -71,8 +71,8 @@ spec = Gem::Specification.new do |s|
0
   s.rubyforge_project = "aws"
0
   s.homepage = "http://www.rubyonrails.org"
0
 
0
- s.add_dependency('actionpack', '= 1.12.5' + PKG_BUILD)
0
- s.add_dependency('activerecord', '= 1.14.4' + PKG_BUILD)
0
+ s.add_dependency('actionpack', '= 1.13.0' + PKG_BUILD)
0
+ s.add_dependency('activerecord', '= 1.15.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 ActionWebService
0
   module VERSION #:nodoc:
0
     MAJOR = 1
0
- MINOR = 1
0
- TINY = 6
0
+ MINOR = 2
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
...
22
23
24
25
26
27
28
29
30
...
38
39
40
41
42
43
44
45
46
...
 
1
2
3
4
...
22
23
24
 
 
 
25
26
27
...
35
36
37
 
 
 
38
39
40
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*1.15.0* (January 16th, 2007)
0
 
0
 * [DOC] clear up some ambiguity with the way has_and_belongs_to_many creates the default join table name. #7072 [jeremymcanally]
0
 
0
@@ -22,9 +22,6 @@
0
 
0
 * [DOCS] Document :allow_nil option of #validate_uniqueness_of. Closes #3143 [Caio Chassot]
0
 
0
-
0
-*1.15.0 RC2* (r5847, January 4th, 2007)
0
-
0
 * Bring the sybase adapter up to scratch for 1.2 release. [jsheets]
0
 
0
 * Oracle: fix connection reset failure. #6846 [leonlleslie]
0
@@ -38,9 +35,6 @@
0
 * Support nil and Array in :conditions => { attr => value } hashes. #6548 [Assaf, Jeremy Kemper]
0
     find(:all, :conditions => { :topic_id => [1, 2, 3], :last_read => nil }
0
 
0
-
0
-*1.15.0 RC1* (r5619, November 22nd, 2006)
0
-
0
 * Quote ActiveSupport::Multibyte::Chars. #6653 [Julian Tarkhanov]
0
 
0
 * MySQL: detect when a NOT NULL column without a default value is misreported as default ''. Can't detect for string, text, and binary columns since '' is a legitimate default. #6156 [simon@redhillconsulting.com.au, obrie, Jonathan Viney, Jeremy Kemper]
...
151
152
153
154
 
155
156
157
...
151
152
153
 
154
155
156
157
0
@@ -151,7 +151,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.3.1' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 1.4.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 = 14
0
- TINY = 4
0
+ MINOR = 15
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
5
6
7
8
9
10
11
12
...
17
18
19
20
21
22
23
24
25
...
 
1
2
3
4
5
6
 
 
 
7
8
9
...
14
15
16
 
 
 
17
18
19
0
@@ -1,12 +1,9 @@
0
-*SVN*
0
+*1.4.0* (January 16th, 2007)
0
 
0
 * Document Inflector.ordinalize and merge docs from String inflections. #7023 [smeade]
0
 
0
 * Unbundle flexmock. [Jeremy Kemper]
0
 
0
-
0
-*1.4.0 RC2* (r5847, January 4th, 2007)
0
-
0
 * Fix Dependencies.autoloaded? to ignore anonymous modules. Closes #6561. [Nicholas Seckar]
0
 
0
 * Update load once paths to prevent nested once constants from being detected and claimed by an external non-once load. [Nicholas Seckar]
0
@@ -17,9 +14,6 @@
0
 
0
 * Fixed Array#to_xml when it contains a series of hashes (each piece would get its own XML declaration) #6610 [thkarcher/cyu]
0
 
0
-
0
-*1.4.0 RC1* (r5619, November 22nd, 2006)
0
-
0
 * Hash#to_xml handles keys with the same name as Kernel methods. #6613 [Catfish]
0
 
0
 * Don't quote hash keys in Hash#to_json if they're valid JavaScript identifiers. Disable this with ActiveSupport::JSON.unquote_hash_key_identifiers = false if you need strict JSON compliance. [Sam Stephenson]
...
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 = 3
0
- TINY = 1
0
+ MINOR = 4
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
5
6
7
8
9
10
...
28
29
30
31
32
33
34
35
36
37
...
 
1
2
3
4
 
 
 
5
6
7
...
25
26
27
 
 
 
 
28
29
30
0
@@ -1,10 +1,7 @@
0
-*SVN*
0
+*1.2.0* (January 16th, 2007)
0
 
0
 * Generator: use destination path for diff tempfiles. #7015 [alfeld]
0
 
0
-
0
-*1.2.0 RC2* (r5847, January 4th, 2007)
0
-
0
 * Fixed that webrick would strip leading newlines and hang connection #4156 [psross]
0
 
0
 * Ensure plugins are in the Dependencies.load_once_paths collection by default. [Rick]
0
@@ -28,10 +25,6 @@
0
 
0
 * Update initializer to load Rails::VERSION as soon as possible. Closes #6698. [Nicholas Seckar]
0
 
0
-
0
-
0
-*1.2.0 RC1* (r5619, November 22nd, 2006)
0
-
0
 * Added ActiveRecord::Base.clear_active_connections! in development mode so the database connection is not carried over from request to request. Some databases won't reread the schema if that doesn't happen (I'm looking at you SQLite), so you have to restart the server after each migration (= no fun) [DHH]
0
 
0
 * Made RAILS_GEM_VERSION work for beta gems too, so specifying 1.1.6 will give you 1.1.6.4520 if available [DHH]
...
288
289
290
291
292
293
294
295
 
 
 
 
 
296
297
298
...
288
289
290
 
 
 
 
 
291
292
293
294
295
296
297
298
0
@@ -288,11 +288,11 @@ spec = Gem::Specification.new do |s|
0
   EOF
0
 
0
   s.add_dependency('rake', '>= 0.7.1')
0
- s.add_dependency('activesupport', '= 1.3.1' + PKG_BUILD)
0
- s.add_dependency('activerecord', '= 1.14.4' + PKG_BUILD)
0
- s.add_dependency('actionpack', '= 1.12.5' + PKG_BUILD)
0
- s.add_dependency('actionmailer', '= 1.2.5' + PKG_BUILD)
0
- s.add_dependency('actionwebservice', '= 1.1.6' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 1.4.0' + PKG_BUILD)
0
+ s.add_dependency('activerecord', '= 1.15.0' + PKG_BUILD)
0
+ s.add_dependency('actionpack', '= 1.13.0' + PKG_BUILD)
0
+ s.add_dependency('actionmailer', '= 1.3.0' + PKG_BUILD)
0
+ s.add_dependency('actionwebservice', '= 1.2.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 = 1
0
- TINY = 6
0
+ MINOR = 2
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end

Comments

    No one has commented yet.