提交 50e0a6b2 编写于 作者: E eileencodes

Preparing for 5.0.0.rc2 release

上级 64025ec6
......@@ -36,58 +36,58 @@ GIT
PATH
remote: .
specs:
actioncable (5.0.0.rc1)
actionpack (= 5.0.0.rc1)
actioncable (5.0.0.rc2)
actionpack (= 5.0.0.rc2)
nio4r (~> 1.2)
websocket-driver (~> 0.6.1)
actionmailer (5.0.0.rc1)
actionpack (= 5.0.0.rc1)
actionview (= 5.0.0.rc1)
activejob (= 5.0.0.rc1)
actionmailer (5.0.0.rc2)
actionpack (= 5.0.0.rc2)
actionview (= 5.0.0.rc2)
activejob (= 5.0.0.rc2)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (5.0.0.rc1)
actionview (= 5.0.0.rc1)
activesupport (= 5.0.0.rc1)
actionpack (5.0.0.rc2)
actionview (= 5.0.0.rc2)
activesupport (= 5.0.0.rc2)
rack (~> 2.x)
rack-test (~> 0.6.3)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.0.0.rc1)
activesupport (= 5.0.0.rc1)
actionview (5.0.0.rc2)
activesupport (= 5.0.0.rc2)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
activejob (5.0.0.rc1)
activesupport (= 5.0.0.rc1)
activejob (5.0.0.rc2)
activesupport (= 5.0.0.rc2)
globalid (>= 0.3.6)
activemodel (5.0.0.rc1)
activesupport (= 5.0.0.rc1)
activerecord (5.0.0.rc1)
activemodel (= 5.0.0.rc1)
activesupport (= 5.0.0.rc1)
activemodel (5.0.0.rc2)
activesupport (= 5.0.0.rc2)
activerecord (5.0.0.rc2)
activemodel (= 5.0.0.rc2)
activesupport (= 5.0.0.rc2)
arel (~> 7.0)
activesupport (5.0.0.rc1)
activesupport (5.0.0.rc2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
rails (5.0.0.rc1)
actioncable (= 5.0.0.rc1)
actionmailer (= 5.0.0.rc1)
actionpack (= 5.0.0.rc1)
actionview (= 5.0.0.rc1)
activejob (= 5.0.0.rc1)
activemodel (= 5.0.0.rc1)
activerecord (= 5.0.0.rc1)
activesupport (= 5.0.0.rc1)
rails (5.0.0.rc2)
actioncable (= 5.0.0.rc2)
actionmailer (= 5.0.0.rc2)
actionpack (= 5.0.0.rc2)
actionview (= 5.0.0.rc2)
activejob (= 5.0.0.rc2)
activemodel (= 5.0.0.rc2)
activerecord (= 5.0.0.rc2)
activesupport (= 5.0.0.rc2)
bundler (>= 1.3.0, < 2.0)
railties (= 5.0.0.rc1)
railties (= 5.0.0.rc2)
sprockets-rails (>= 2.0.0)
railties (5.0.0.rc1)
actionpack (= 5.0.0.rc1)
activesupport (= 5.0.0.rc1)
railties (5.0.0.rc2)
actionpack (= 5.0.0.rc2)
activesupport (= 5.0.0.rc2)
method_source
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
......@@ -160,9 +160,9 @@ GEM
mime-types (>= 1.16, < 4)
metaclass (0.0.4)
method_source (0.8.2)
mime-types (3.0)
mime-types (3.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2016.0221)
mime-types-data (3.2016.0521)
mini_portile2 (2.0.0)
minitest (5.3.3)
mocha (0.14.0)
......@@ -241,7 +241,7 @@ GEM
serverengine (~> 1.5.11)
thor
thread (~> 0.1.7)
sprockets (3.6.1)
sprockets (3.6.2)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (3.0.4)
......
## Rails 5.0.0.rc2 (June 22, 2016) ##
* Fix development reloading support: new cable connections are now correctly
dispatched to the reloaded channel class, instead of using a cached reference
to the originally-loaded version.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "rc2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc2 (June 22, 2016) ##
* Exception handling: use `rescue_from` to handle exceptions raised by
mailer actions, by message delivery, and by deferred delivery jobs.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "rc2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc2 (June 22, 2016) ##
* No changes.
## Rails 5.0.0.rc1 (May 06, 2016) ##
* Add `ActionController#helpers` to get access to the view context at the controller
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "rc2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc2 (June 22, 2016) ##
* Change `datetime_field` and `datetime_field_tag` to generate `datetime-local` fields.
As a new specification of the HTML 5 the text field type `datetime` will no longer exist
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "rc2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc2 (June 22, 2016) ##
* No changes.
## Rails 5.0.0.rc1 (May 06, 2016) ##
* No changes.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "rc2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc2 (June 22, 2016) ##
* Ensure that instances of `ActiveModel::Errors` can be marshalled.
Fixes #25165.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "rc2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc2 (June 22, 2016) ##
* Ensure hashes can be assigned to attributes created using `composed_of`.
Fixes #25210.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "rc2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc2 (June 22, 2016) ##
* `Date.to_s` doesn't produce too many spaces. For example, `to_s(:short)`
will now produce `01 Feb` instead of ` 1 Feb`.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "rc2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc2 (June 22, 2016) ##
* No changes.
## Rails 5.0.0.rc1 (May 06, 2016) ##
* No changes.
......
## Rails 5.0.0.rc2 (June 22, 2016) ##
* No changes.
## Rails 5.0.0.rc1 (May 06, 2016) ##
* No changes.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "rc2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "rc1"
PRE = "rc2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册