1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Preparing for 5.0.2 release

This commit is contained in:
Rafael Mendonça França 2017-03-01 18:10:32 -05:00
parent 7344d9a26a
commit 38ed1f4be1
No known key found for this signature in database
GPG key ID: FC23B6D0F1EEE948
23 changed files with 54 additions and 54 deletions

View file

@ -17,58 +17,58 @@ GIT
PATH
remote: .
specs:
actioncable (5.0.2.rc1)
actionpack (= 5.0.2.rc1)
actioncable (5.0.2)
actionpack (= 5.0.2)
nio4r (>= 1.2, < 3.0)
websocket-driver (~> 0.6.1)
actionmailer (5.0.2.rc1)
actionpack (= 5.0.2.rc1)
actionview (= 5.0.2.rc1)
activejob (= 5.0.2.rc1)
actionmailer (5.0.2)
actionpack (= 5.0.2)
actionview (= 5.0.2)
activejob (= 5.0.2)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
actionpack (5.0.2.rc1)
actionview (= 5.0.2.rc1)
activesupport (= 5.0.2.rc1)
actionpack (5.0.2)
actionview (= 5.0.2)
activesupport (= 5.0.2)
rack (~> 2.0)
rack-test (~> 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.0.2.rc1)
activesupport (= 5.0.2.rc1)
actionview (5.0.2)
activesupport (= 5.0.2)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (5.0.2.rc1)
activesupport (= 5.0.2.rc1)
activejob (5.0.2)
activesupport (= 5.0.2)
globalid (>= 0.3.6)
activemodel (5.0.2.rc1)
activesupport (= 5.0.2.rc1)
activerecord (5.0.2.rc1)
activemodel (= 5.0.2.rc1)
activesupport (= 5.0.2.rc1)
activemodel (5.0.2)
activesupport (= 5.0.2)
activerecord (5.0.2)
activemodel (= 5.0.2)
activesupport (= 5.0.2)
arel (~> 7.0)
activesupport (5.0.2.rc1)
activesupport (5.0.2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
rails (5.0.2.rc1)
actioncable (= 5.0.2.rc1)
actionmailer (= 5.0.2.rc1)
actionpack (= 5.0.2.rc1)
actionview (= 5.0.2.rc1)
activejob (= 5.0.2.rc1)
activemodel (= 5.0.2.rc1)
activerecord (= 5.0.2.rc1)
activesupport (= 5.0.2.rc1)
rails (5.0.2)
actioncable (= 5.0.2)
actionmailer (= 5.0.2)
actionpack (= 5.0.2)
actionview (= 5.0.2)
activejob (= 5.0.2)
activemodel (= 5.0.2)
activerecord (= 5.0.2)
activesupport (= 5.0.2)
bundler (>= 1.3.0, < 2.0)
railties (= 5.0.2.rc1)
railties (= 5.0.2)
sprockets-rails (>= 2.0.0)
railties (5.0.2.rc1)
actionpack (= 5.0.2.rc1)
activesupport (= 5.0.2.rc1)
railties (5.0.2)
actionpack (= 5.0.2)
activesupport (= 5.0.2)
method_source
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)

View file

@ -1 +1 @@
5.0.2.rc1
5.0.2

View file

@ -1,4 +1,4 @@
## Rails 5.0.2.rc1 (February 24, 2017) ##
## Rails 5.0.2 (March 01, 2017) ##
* No changes.

View file

@ -8,7 +8,7 @@ module ActionCable
MAJOR = 5
MINOR = 0
TINY = 2
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View file

@ -1,6 +1,6 @@
{
"name": "actioncable",
"version": "5.0.2-rc1",
"version": "5.0.2",
"description": "WebSocket framework for Ruby on Rails.",
"main": "lib/assets/compiled/action_cable.js",
"files": [

View file

@ -1,4 +1,4 @@
## Rails 5.0.2.rc1 (February 24, 2017) ##
## Rails 5.0.2 (March 01, 2017) ##
* No changes.

View file

@ -8,7 +8,7 @@ module ActionMailer
MAJOR = 5
MINOR = 0
TINY = 2
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View file

@ -1,4 +1,4 @@
## Rails 5.0.2.rc1 (February 24, 2017) ##
## Rails 5.0.2 (March 01, 2017) ##
* Make `with_routing` test helper work when testing controllers inheriting from `ActionController::API`.

View file

@ -8,7 +8,7 @@ module ActionPack
MAJOR = 5
MINOR = 0
TINY = 2
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View file

@ -1,4 +1,4 @@
## Rails 5.0.2.rc1 (February 24, 2017) ##
## Rails 5.0.2 (March 01, 2017) ##
* Allow render locals to be assigned to instance variables in a view.

View file

@ -8,7 +8,7 @@ module ActionView
MAJOR = 5
MINOR = 0
TINY = 2
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View file

@ -1,4 +1,4 @@
## Rails 5.0.2.rc1 (February 24, 2017) ##
## Rails 5.0.2 (March 01, 2017) ##
* No changes.

View file

@ -8,7 +8,7 @@ module ActiveJob
MAJOR = 5
MINOR = 0
TINY = 2
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View file

@ -1,4 +1,4 @@
## Rails 5.0.2.rc1 (February 24, 2017) ##
## Rails 5.0.2 (March 01, 2017) ##
* No changes.

View file

@ -8,7 +8,7 @@ module ActiveModel
MAJOR = 5
MINOR = 0
TINY = 2
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View file

@ -1,4 +1,4 @@
## Rails 5.0.2.rc1 (February 24, 2017) ##
## Rails 5.0.2 (March 01, 2017) ##
* Fix `wait_timeout` to configurable for mysql2 adapter.

View file

@ -8,7 +8,7 @@ module ActiveRecord
MAJOR = 5
MINOR = 0
TINY = 2
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View file

@ -1,4 +1,4 @@
## Rails 5.0.2.rc1 (February 24, 2017) ##
## Rails 5.0.2 (March 01, 2017) ##
* In Core Extensions, make `MarshalWithAutoloading#load` pass through the second, optional
argument for `Marshal#load( source [, proc] )`. This way we don't have to do

View file

@ -8,7 +8,7 @@ module ActiveSupport
MAJOR = 5
MINOR = 0
TINY = 2
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View file

@ -1,4 +1,4 @@
## Rails 5.0.2.rc1 (February 24, 2017) ##
## Rails 5.0.2 (March 01, 2017) ##
* No changes.

View file

@ -1,4 +1,4 @@
## Rails 5.0.2.rc1 (February 24, 2017) ##
## Rails 5.0.2 (March 01, 2017) ##
* Fix running multiple tests in one `rake` command

View file

@ -8,7 +8,7 @@ module Rails
MAJOR = 5
MINOR = 0
TINY = 2
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View file

@ -8,7 +8,7 @@ module Rails
MAJOR = 5
MINOR = 0
TINY = 2
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end