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
Making ready for release of 2.1
dhh (author)
Sat May 31 17:03:03 -0700 2008
commit  f9db7695fe3c148c8d1077f1564e5b94d126b83b
tree    3f9d63095f88c0537a0f2e9865833f4010131dda
parent  ef0ea782b1f5cf7b08e74ea3002a16c708f66645
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-*2.1.0 RC1 (May 11th, 2008)*
0
+*2.1.0 (May 31st, 2008)*
0
 
0
 * Fixed that a return-path header would be ignored #7572 [joost]
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', '= 2.0.991' + PKG_BUILD)
0
+ s.add_dependency('actionpack', '= 2.1.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 = 2
0
- MINOR = 0
0
- TINY = 991
0
+ MINOR = 1
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
 
4
5
6
...
 
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
-* InstanceTag#default_time_from_options overflows to DateTime [Geoff Buesing]
0
+*2.1.0 (May 31st, 2008)*
0
 
0
-*2.1.0 RC1 (May 11th, 2008)*
0
+* InstanceTag#default_time_from_options overflows to DateTime [Geoff Buesing]
0
 
0
 * Fixed that forgery protection can be used without session tracking (Peter Jones) [#139]
0
 
...
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', '= 2.0.991' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 2.1.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 = 2
0
- MINOR = 0
0
- TINY = 991
0
+ MINOR = 1
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
 
 
 
4
5
6
...
 
1
2
 
3
4
5
6
7
8
0
@@ -1,6 +1,8 @@
0
-* Add first/last methods to associations/named_scope. Resolved #226. [Ryan Bates]
0
+*2.1.0 (May 31st, 2008)*
0
 
0
-*2.1.0 RC1 (May 11th, 2008)*
0
+* Added SQL escaping for :limit and :offset #288 [Aaron Bedra, Steven Bristol, Jonathan Wiess]
0
+
0
+* Added first/last methods to associations/named_scope. Resolved #226. [Ryan Bates]
0
 
0
 * Ensure hm:t preloading honours reflection options. Resolves #137. [Frederick Cheung]
0
 
...
171
172
173
174
 
175
176
177
...
171
172
173
 
174
175
176
177
0
@@ -171,7 +171,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', '= 2.0.991' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 2.1.0' + PKG_BUILD)
0
 
0
   s.files.delete FIXTURES_ROOT + "/fixture_database.sqlite"
0
   s.files.delete FIXTURES_ROOT + "/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 = 2
0
- MINOR = 0
0
- TINY = 991
0
+ MINOR = 1
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
12
13
14
15
 
16
17
18
19
20
21
 
22
23
24
...
12
13
14
 
15
16
17
18
19
20
 
21
22
23
24
0
@@ -12,13 +12,13 @@ ActiveRecord::Base.logger = RAILS_DEFAULT_LOGGER
0
 ActiveRecord::Base.configurations = {
0
   'arunit' => {
0
     :adapter => 'mysql',
0
- :username => 'rails',
0
+ :username => 'root',
0
     :encoding => 'utf8',
0
     :database => 'activerecord_unittest',
0
   },
0
   'arunit2' => {
0
     :adapter => 'mysql',
0
- :username => 'rails',
0
+ :username => 'root',
0
     :database => 'activerecord_unittest2'
0
   }
0
 }
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-*2.1.0 RC1 (May 11th, 2008)*
0
+*2.1.0 (May 31st, 2008)*
0
 
0
 * Fixed response logging to use length instead of the entire thing (seangeo) [#27]
0
 
...
64
65
66
67
 
68
69
70
...
64
65
66
 
67
68
69
70
0
@@ -64,7 +64,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', '= 2.0.991' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 2.1.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 = 2
0
- MINOR = 0
0
- TINY = 991
0
+ MINOR = 1
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
 
 
1
2
3
...
6
7
8
9
10
11
12
13
...
1
2
3
4
5
...
8
9
10
 
 
11
12
13
0
@@ -1,3 +1,5 @@
0
+*2.1.0 (May 31st, 2008)*
0
+
0
 * TimeZone#to_s shows offset as GMT instead of UTC, because GMT will be more familiar to end users (see time zone selects used by Windows OS, google.com and yahoo.com.) Reverts [8370] [Geoff Buesing]
0
 
0
 * Hash.from_xml: datetime xml types overflow to Ruby DateTime class when out of range of Time. Adding tests for utc offsets [Geoff Buesing]
0
@@ -6,8 +8,6 @@
0
 
0
 * Time#to_json: don't convert to utc before encoding. References #175 [Geoff Buesing]
0
 
0
-*2.1.0 RC1 (May 11th, 2008)*
0
-
0
 * Remove unused JSON::RESERVED_WORDS, JSON.valid_identifier? and JSON.reserved_word? methods. Resolves #164. [Cheah Chu Yeow]
0
 
0
 * Adding Date.current, which returns Time.zone.today if config.time_zone is set; otherwise returns Date.today [Geoff Buesing]
...
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 = 2
0
- MINOR = 0
0
- TINY = 991
0
+ MINOR = 1
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
2
3
4
5
6
7
 
8
9
10
...
 
 
 
 
 
 
 
1
2
3
4
0
@@ -1,10 +1,4 @@
0
-*SVN*
0
-
0
-* Consolidate error messages for missing gems, and skip them when running rake gems:* tasks. [rick]
0
-
0
-* Use a system command to install gems, since GemRunner exits the ruby process. #210 [Tim Morgan]
0
-
0
-*2.1.0 RC1 (May 11th, 2008)*
0
+*2.1.0 (May 31st, 2008)*
0
 
0
 * script/dbconsole fires up the command-line database client. #102 [Steve Purcell]
0
 
...
304
305
306
307
308
309
310
311
 
 
 
 
 
312
313
314
...
304
305
306
 
 
 
 
 
307
308
309
310
311
312
313
314
0
@@ -304,11 +304,11 @@ spec = Gem::Specification.new do |s|
0
   EOF
0
 
0
   s.add_dependency('rake', '>= 0.8.1')
0
- s.add_dependency('activesupport', '= 2.0.991' + PKG_BUILD)
0
- s.add_dependency('activerecord', '= 2.0.991' + PKG_BUILD)
0
- s.add_dependency('actionpack', '= 2.0.991' + PKG_BUILD)
0
- s.add_dependency('actionmailer', '= 2.0.991' + PKG_BUILD)
0
- s.add_dependency('activeresource', '= 2.0.991' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 2.1.0' + PKG_BUILD)
0
+ s.add_dependency('activerecord', '= 2.1.0' + PKG_BUILD)
0
+ s.add_dependency('actionpack', '= 2.1.0' + PKG_BUILD)
0
+ s.add_dependency('actionmailer', '= 2.1.0' + PKG_BUILD)
0
+ s.add_dependency('activeresource', '= 2.1.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 = 2
0
- MINOR = 0
0
- TINY = 991
0
+ MINOR = 1
0
+ TINY = 0
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
4
5
6
7
 
8
9
10
...
19
20
21
22
23
24
25
 
26
...
4
5
6
 
7
8
9
10
...
19
20
21
 
 
 
 
22
23
0
@@ -4,7 +4,7 @@ VERSION = ARGV.first
0
 PACKAGES = %w(activesupport activerecord actionpack actionmailer activeresource)
0
 
0
 # Checkout source
0
-`rm -rf release && svn export http://dev.rubyonrails.org/svn/rails/trunk release`
0
+# `rm -rf release && svn export http://dev.rubyonrails.org/svn/rails/trunk release`
0
 
0
 # Create Rails packages
0
 `cd release/railties && rake template=jamis package`
0
@@ -19,7 +19,4 @@ end
0
 
0
 # Upload rails tgz/zip
0
 `rubyforge add_release rails rails 'REL #{VERSION}' release/rails-#{VERSION}.tgz`
0
-`rubyforge add_release rails rails 'REL #{VERSION}' release/rails-#{VERSION}.zip`
0
-
0
-# Create SVN tag
0
-puts "Remember to create SVN tag"
0
+`rubyforge add_release rails rails 'REL #{VERSION}' release/rails-#{VERSION}.zip`
0
\ No newline at end of file

Comments

    No one has commented yet.