mirror of https://github.com/rails/rails
Get ready for beta 4
This commit is contained in:
parent
585f8f27b1
commit
32d4330b81
2
Gemfile
2
Gemfile
|
@ -32,7 +32,7 @@ if mri || RUBY_ENGINE == "rbx"
|
|||
gem "sqlite3-ruby", "~> 1.3.0", :require => 'sqlite3'
|
||||
|
||||
group :db do
|
||||
gem "pg", ">= 0.9.0"
|
||||
# gem "pg", ">= 0.9.0"
|
||||
gem "mysql", ">= 2.8.1"
|
||||
end
|
||||
elsif RUBY_ENGINE == "jruby"
|
||||
|
|
|
@ -1 +1 @@
|
|||
3.0.0.beta3
|
||||
3.0.0.beta4
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*Rails 3.0.0 [beta 4/release candidate] (unreleased)*
|
||||
*Rails 3.0.0 [beta 4] (June 8th, 2010)*
|
||||
|
||||
* Changed encoding behaviour of mail, so updated tests in actionmailer and bumped mail version to 2.2.1 [ML]
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ module ActionMailer
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta3"
|
||||
BUILD = "beta4"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*Rails 3.0.0 [beta 4/release candidate] (unreleased)*
|
||||
*Rails 3.0.0 [beta 4] (June 8th, 2010)*
|
||||
|
||||
* Add shallow routes back to the new router [Diego Carrion]
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ module ActionPack
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta3"
|
||||
BUILD = "beta4"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*Rails 3.0.0 [beta 4/release candidate] (unreleased)*
|
||||
*Rails 3.0.0 [beta 4] (June 8th, 2010)*
|
||||
|
||||
* JSON supports a custom root option: to_json(:root => 'custom') #4515 [Jatinder Singh]
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ module ActiveModel
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta3"
|
||||
BUILD = "beta4"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*Rails 3.0.0 [beta 4/release candidate] (unreleased)*
|
||||
*Rails 3.0.0 [beta 4] (June 8th, 2010)*
|
||||
|
||||
* Add index length support for MySQL. #1852 [Emili Parreno, Pratik Naik]
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ module ActiveRecord
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta3"
|
||||
BUILD = "beta4"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*Rails 3.0.0 [beta 4/release candidate] (unreleased)*
|
||||
*Rails 3.0.0 [beta 4] (June 8th, 2010)*
|
||||
|
||||
* JSON: set Base.include_root_in_json = true to include a root value in the JSON: {"post": {"title": ...}}. Mirrors the Active Record option. [Santiago Pastorino]
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ module ActiveResource
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta3"
|
||||
BUILD = "beta4"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*Rails 3.0.0 [beta 4/release candidate] (unreleased)*
|
||||
*Rails 3.0.0 [beta 4] (June 8th, 2010)*
|
||||
|
||||
* Extracted String#truncate from TextHelper#truncate [DHH]
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ module ActiveSupport
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta3"
|
||||
BUILD = "beta4"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
*Rails 3.0.0 [beta 4/release candidate] (unreleased)*
|
||||
*Rails 3.0.0 [beta 4] (June 8th, 2010)*
|
||||
|
||||
* Version bump
|
||||
* Removed Rails Metal [YK & JV].
|
||||
|
|
|
@ -3,7 +3,7 @@ module Rails
|
|||
MAJOR = 3
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
BUILD = "beta3"
|
||||
BUILD = "beta4"
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue