From 2c858521b8e3a4d00b703a5ec08adbfe6141497c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Fri, 24 Feb 2017 19:53:24 -0500 Subject: [PATCH] Preparing for 5.0.2.rc1 release --- Gemfile.lock | 70 +++++++++---------- RAILS_VERSION | 2 +- actioncable/CHANGELOG.md | 5 ++ actioncable/lib/action_cable/gem_version.rb | 4 +- actioncable/package.json | 2 +- actionmailer/CHANGELOG.md | 5 ++ actionmailer/lib/action_mailer/gem_version.rb | 4 +- actionpack/CHANGELOG.md | 2 + actionpack/lib/action_pack/gem_version.rb | 4 +- actionview/CHANGELOG.md | 2 + actionview/lib/action_view/gem_version.rb | 4 +- activejob/CHANGELOG.md | 5 ++ activejob/lib/active_job/gem_version.rb | 4 +- activemodel/CHANGELOG.md | 5 ++ activemodel/lib/active_model/gem_version.rb | 4 +- activerecord/CHANGELOG.md | 2 + activerecord/lib/active_record/gem_version.rb | 4 +- activesupport/CHANGELOG.md | 2 + .../lib/active_support/gem_version.rb | 4 +- guides/CHANGELOG.md | 5 ++ railties/CHANGELOG.md | 2 + railties/lib/rails/gem_version.rb | 4 +- version.rb | 4 +- 23 files changed, 92 insertions(+), 57 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 0fcf5bda36..ce09bcedb3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -17,58 +17,58 @@ GIT PATH remote: . specs: - actioncable (5.0.1) - actionpack (= 5.0.1) + actioncable (5.0.2.rc1) + actionpack (= 5.0.2.rc1) nio4r (>= 1.2, < 3.0) websocket-driver (~> 0.6.1) - actionmailer (5.0.1) - actionpack (= 5.0.1) - actionview (= 5.0.1) - activejob (= 5.0.1) + actionmailer (5.0.2.rc1) + actionpack (= 5.0.2.rc1) + actionview (= 5.0.2.rc1) + activejob (= 5.0.2.rc1) mail (~> 2.5, >= 2.5.4) rails-dom-testing (~> 2.0) - actionpack (5.0.1) - actionview (= 5.0.1) - activesupport (= 5.0.1) + actionpack (5.0.2.rc1) + actionview (= 5.0.2.rc1) + activesupport (= 5.0.2.rc1) rack (~> 2.0) rack-test (~> 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.0.2) - actionview (5.0.1) - activesupport (= 5.0.1) + actionview (5.0.2.rc1) + activesupport (= 5.0.2.rc1) builder (~> 3.1) erubis (~> 2.7.0) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.0.3) - activejob (5.0.1) - activesupport (= 5.0.1) + activejob (5.0.2.rc1) + activesupport (= 5.0.2.rc1) globalid (>= 0.3.6) - activemodel (5.0.1) - activesupport (= 5.0.1) - activerecord (5.0.1) - activemodel (= 5.0.1) - activesupport (= 5.0.1) + 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) arel (~> 7.0) - activesupport (5.0.1) + activesupport (5.0.2.rc1) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (~> 0.7) minitest (~> 5.1) tzinfo (~> 1.1) - rails (5.0.1) - actioncable (= 5.0.1) - actionmailer (= 5.0.1) - actionpack (= 5.0.1) - actionview (= 5.0.1) - activejob (= 5.0.1) - activemodel (= 5.0.1) - activerecord (= 5.0.1) - activesupport (= 5.0.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) bundler (>= 1.3.0, < 2.0) - railties (= 5.0.1) + railties (= 5.0.2.rc1) sprockets-rails (>= 2.0.0) - railties (5.0.1) - actionpack (= 5.0.1) - activesupport (= 5.0.1) + railties (5.0.2.rc1) + actionpack (= 5.0.2.rc1) + activesupport (= 5.0.2.rc1) method_source rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) @@ -160,7 +160,7 @@ GEM activesupport (>= 4.1.0) hiredis (0.6.1) http_parser.rb (0.6.0) - i18n (0.8.0) + i18n (0.8.1) jquery-rails (4.2.1) rails-dom-testing (>= 1, < 3) railties (>= 4.2.0) @@ -191,7 +191,7 @@ GEM mysql2 (0.4.5) mysql2 (0.4.5-x64-mingw32) mysql2 (0.4.5-x86-mingw32) - nio4r (1.2.1) + nio4r (2.0.0) nokogiri (1.7.0) mini_portile2 (~> 2.1.0) nokogiri (1.7.0-x64-mingw32) @@ -370,4 +370,4 @@ DEPENDENCIES wdm (>= 0.1.0) BUNDLED WITH - 1.14.3 + 1.14.4 diff --git a/RAILS_VERSION b/RAILS_VERSION index 6b244dcd69..963eea3a80 100644 --- a/RAILS_VERSION +++ b/RAILS_VERSION @@ -1 +1 @@ -5.0.1 +5.0.2.rc1 diff --git a/actioncable/CHANGELOG.md b/actioncable/CHANGELOG.md index 2e964d0b49..ad0d19d4f6 100644 --- a/actioncable/CHANGELOG.md +++ b/actioncable/CHANGELOG.md @@ -1,3 +1,8 @@ +## Rails 5.0.2.rc1 (February 24, 2017) ## + +* No changes. + + ## Rails 5.0.1 (December 21, 2016) ## * No changes. diff --git a/actioncable/lib/action_cable/gem_version.rb b/actioncable/lib/action_cable/gem_version.rb index f6a7af2497..1d7a091005 100644 --- a/actioncable/lib/action_cable/gem_version.rb +++ b/actioncable/lib/action_cable/gem_version.rb @@ -7,8 +7,8 @@ def self.gem_version module VERSION MAJOR = 5 MINOR = 0 - TINY = 1 - PRE = nil + TINY = 2 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/actioncable/package.json b/actioncable/package.json index e51556725c..5115bc946a 100644 --- a/actioncable/package.json +++ b/actioncable/package.json @@ -1,6 +1,6 @@ { "name": "actioncable", - "version": "5.0.1", + "version": "5.0.2-rc1", "description": "WebSocket framework for Ruby on Rails.", "main": "lib/assets/compiled/action_cable.js", "files": [ diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md index ba4c79d978..24b4827f08 100644 --- a/actionmailer/CHANGELOG.md +++ b/actionmailer/CHANGELOG.md @@ -1,3 +1,8 @@ +## Rails 5.0.2.rc1 (February 24, 2017) ## + +* No changes. + + ## Rails 5.0.1 (December 21, 2016) ## * No changes. diff --git a/actionmailer/lib/action_mailer/gem_version.rb b/actionmailer/lib/action_mailer/gem_version.rb index f24d347a25..1c8d3a7d78 100644 --- a/actionmailer/lib/action_mailer/gem_version.rb +++ b/actionmailer/lib/action_mailer/gem_version.rb @@ -7,8 +7,8 @@ def self.gem_version module VERSION MAJOR = 5 MINOR = 0 - TINY = 1 - PRE = nil + TINY = 2 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index 1abdd1866f..ae86dc21da 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,3 +1,5 @@ +## Rails 5.0.2.rc1 (February 24, 2017) ## + * Make `with_routing` test helper work when testing controllers inheriting from `ActionController::API`. *Julia López* diff --git a/actionpack/lib/action_pack/gem_version.rb b/actionpack/lib/action_pack/gem_version.rb index 5c65b8e1fc..3279657376 100644 --- a/actionpack/lib/action_pack/gem_version.rb +++ b/actionpack/lib/action_pack/gem_version.rb @@ -7,8 +7,8 @@ def self.gem_version module VERSION MAJOR = 5 MINOR = 0 - TINY = 1 - PRE = nil + TINY = 2 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index dc5edb9437..49a455376f 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -1,3 +1,5 @@ +## Rails 5.0.2.rc1 (February 24, 2017) ## + * Allow render locals to be assigned to instance variables in a view. Fixes #27480. diff --git a/actionview/lib/action_view/gem_version.rb b/actionview/lib/action_view/gem_version.rb index 3324792eba..0f70116d3c 100644 --- a/actionview/lib/action_view/gem_version.rb +++ b/actionview/lib/action_view/gem_version.rb @@ -7,8 +7,8 @@ def self.gem_version module VERSION MAJOR = 5 MINOR = 0 - TINY = 1 - PRE = nil + TINY = 2 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index e280d478de..5c4065c8ad 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -1,3 +1,8 @@ +## Rails 5.0.2.rc1 (February 24, 2017) ## + +* No changes. + + ## Rails 5.0.1 (December 21, 2016) ## * No changes. diff --git a/activejob/lib/active_job/gem_version.rb b/activejob/lib/active_job/gem_version.rb index 4b632eb6c3..9fe3676df2 100644 --- a/activejob/lib/active_job/gem_version.rb +++ b/activejob/lib/active_job/gem_version.rb @@ -7,8 +7,8 @@ def self.gem_version module VERSION MAJOR = 5 MINOR = 0 - TINY = 1 - PRE = nil + TINY = 2 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md index 8eae032e30..b97c456c70 100644 --- a/activemodel/CHANGELOG.md +++ b/activemodel/CHANGELOG.md @@ -1,3 +1,8 @@ +## Rails 5.0.2.rc1 (February 24, 2017) ## + +* No changes. + + ## Rails 5.0.1 (December 21, 2016) ## * No changes. diff --git a/activemodel/lib/active_model/gem_version.rb b/activemodel/lib/active_model/gem_version.rb index 4453590dc7..8c021a3acc 100644 --- a/activemodel/lib/active_model/gem_version.rb +++ b/activemodel/lib/active_model/gem_version.rb @@ -7,8 +7,8 @@ def self.gem_version module VERSION MAJOR = 5 MINOR = 0 - TINY = 1 - PRE = nil + TINY = 2 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 43ddd90f78..4208c0cb06 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,5 @@ +## Rails 5.0.2.rc1 (February 24, 2017) ## + * Fix `wait_timeout` to configurable for mysql2 adapter. Fixes #26556. diff --git a/activerecord/lib/active_record/gem_version.rb b/activerecord/lib/active_record/gem_version.rb index d707a849c6..5d7fc9cf07 100644 --- a/activerecord/lib/active_record/gem_version.rb +++ b/activerecord/lib/active_record/gem_version.rb @@ -7,8 +7,8 @@ def self.gem_version module VERSION MAJOR = 5 MINOR = 0 - TINY = 1 - PRE = nil + TINY = 2 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 90cd9035f1..ebc32048fb 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,3 +1,5 @@ +## Rails 5.0.2.rc1 (February 24, 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 `Marshal.method(:load).super_method.call(sourse, proc)` just to be able to pass a proc. diff --git a/activesupport/lib/active_support/gem_version.rb b/activesupport/lib/active_support/gem_version.rb index 7a806ccb78..e0e2b2bdae 100644 --- a/activesupport/lib/active_support/gem_version.rb +++ b/activesupport/lib/active_support/gem_version.rb @@ -7,8 +7,8 @@ def self.gem_version module VERSION MAJOR = 5 MINOR = 0 - TINY = 1 - PRE = nil + TINY = 2 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/guides/CHANGELOG.md b/guides/CHANGELOG.md index 3832db78cd..c98d063351 100644 --- a/guides/CHANGELOG.md +++ b/guides/CHANGELOG.md @@ -1,3 +1,8 @@ +## Rails 5.0.2.rc1 (February 24, 2017) ## + +* No changes. + + ## Rails 5.0.1 (December 21, 2016) ## * No changes. diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md index 231a2de8e1..f143d0fee1 100644 --- a/railties/CHANGELOG.md +++ b/railties/CHANGELOG.md @@ -1,3 +1,5 @@ +## Rails 5.0.2.rc1 (February 24, 2017) ## + * Fix running multiple tests in one `rake` command e.g. `bin/rake test:models test:controllers` diff --git a/railties/lib/rails/gem_version.rb b/railties/lib/rails/gem_version.rb index eac16d626f..b5526218ee 100644 --- a/railties/lib/rails/gem_version.rb +++ b/railties/lib/rails/gem_version.rb @@ -7,8 +7,8 @@ def self.gem_version module VERSION MAJOR = 5 MINOR = 0 - TINY = 1 - PRE = nil + TINY = 2 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/version.rb b/version.rb index eac16d626f..b5526218ee 100644 --- a/version.rb +++ b/version.rb @@ -7,8 +7,8 @@ def self.gem_version module VERSION MAJOR = 5 MINOR = 0 - TINY = 1 - PRE = nil + TINY = 2 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end -- GitLab