Preparing for 5.0.0.rc1 release

上级 809236bc
......@@ -36,58 +36,58 @@ GIT
PATH
remote: .
specs:
actioncable (5.0.0.beta4)
actionpack (= 5.0.0.beta4)
actioncable (5.0.0.rc1)
actionpack (= 5.0.0.rc1)
nio4r (~> 1.2)
websocket-driver (~> 0.6.1)
actionmailer (5.0.0.beta4)
actionpack (= 5.0.0.beta4)
actionview (= 5.0.0.beta4)
activejob (= 5.0.0.beta4)
actionmailer (5.0.0.rc1)
actionpack (= 5.0.0.rc1)
actionview (= 5.0.0.rc1)
activejob (= 5.0.0.rc1)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (5.0.0.beta4)
actionview (= 5.0.0.beta4)
activesupport (= 5.0.0.beta4)
actionpack (5.0.0.rc1)
actionview (= 5.0.0.rc1)
activesupport (= 5.0.0.rc1)
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.beta4)
activesupport (= 5.0.0.beta4)
actionview (5.0.0.rc1)
activesupport (= 5.0.0.rc1)
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.beta4)
activesupport (= 5.0.0.beta4)
activejob (5.0.0.rc1)
activesupport (= 5.0.0.rc1)
globalid (>= 0.3.6)
activemodel (5.0.0.beta4)
activesupport (= 5.0.0.beta4)
activerecord (5.0.0.beta4)
activemodel (= 5.0.0.beta4)
activesupport (= 5.0.0.beta4)
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)
arel (~> 7.0)
activesupport (5.0.0.beta4)
activesupport (5.0.0.rc1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
rails (5.0.0.beta4)
actioncable (= 5.0.0.beta4)
actionmailer (= 5.0.0.beta4)
actionpack (= 5.0.0.beta4)
actionview (= 5.0.0.beta4)
activejob (= 5.0.0.beta4)
activemodel (= 5.0.0.beta4)
activerecord (= 5.0.0.beta4)
activesupport (= 5.0.0.beta4)
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)
bundler (>= 1.3.0, < 2.0)
railties (= 5.0.0.beta4)
railties (= 5.0.0.rc1)
sprockets-rails (>= 2.0.0)
railties (5.0.0.beta4)
actionpack (= 5.0.0.beta4)
activesupport (= 5.0.0.beta4)
railties (5.0.0.rc1)
actionpack (= 5.0.0.rc1)
activesupport (= 5.0.0.rc1)
method_source
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
......
## Rails 5.0.0.rc1 (May 06, 2016) ##
* No changes.
## Rails 5.0.0.beta4 (April 27, 2016) ##
* WebSocket protocol negotiation.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc1 (May 06, 2016) ##
* No changes.
## Rails 5.0.0.beta4 (April 27, 2016) ##
* Disallow calling `#deliver_later` after making local modifications to
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc1 (May 06, 2016) ##
* Add `ActionController#helpers` to get access to the view context at the controller
level.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc1 (May 06, 2016) ##
* No changes.
## Rails 5.0.0.beta4 (April 27, 2016) ##
* `date_select` helper `:with_css_classes` option now accepts a hash of strings
* `date_select` helper `:with_css_classes` option now accepts a hash of strings
for `:year`, `:month`, `:day`, `:hour`, `:minute`, `:second` that will extend
the select type with the given css class value.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc1 (May 06, 2016) ##
* No changes.
## Rails 5.0.0.beta4 (April 27, 2016) ##
* Enable class reloading prior to job dispatch, and ensure Active Record
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc1 (May 06, 2016) ##
* No changes.
## Rails 5.0.0.beta4 (April 27, 2016) ##
* Allow passing record being validated to the message proc to generate
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc1 (May 06, 2016) ##
* No changes.
## Rails 5.0.0.beta4 (April 27, 2016) ##
* PostgreSQL: Support Expression Indexes and Operator Classes.
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc1 (May 06, 2016) ##
* `ActiveSupport::Duration` supports weeks and hours.
[1.hour.inspect, 1.hour.value, 1.hour.parts]
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
## Rails 5.0.0.rc1 (May 06, 2016) ##
* No changes.
## Rails 5.0.0.beta4 (April 27, 2016) ##
* Update example of passing a proc to `:message` option for validating records.
......
## Rails 5.0.0.rc1 (May 06, 2016) ##
* No changes.
## Rails 5.0.0.beta4 (April 27, 2016) ##
* Add `config/initializers/to_time_preserves_timezone.rb`, which tells
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
......
......@@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"
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.
先完成此消息的编辑!
想要评论请 注册