Skip to content

Commit

Permalink
Preparing for 5.2.0.beta2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Nov 28, 2017
1 parent 101e1d1 commit 2837d0f
Show file tree
Hide file tree
Showing 27 changed files with 108 additions and 51 deletions.
72 changes: 36 additions & 36 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -44,62 +44,62 @@ GIT
PATH
remote: .
specs:
actioncable (5.2.0.beta1)
actionpack (= 5.2.0.beta1)
actioncable (5.2.0.beta2)
actionpack (= 5.2.0.beta2)
nio4r (~> 2.0)
websocket-driver (~> 0.6.1)
actionmailer (5.2.0.beta1)
actionpack (= 5.2.0.beta1)
actionview (= 5.2.0.beta1)
activejob (= 5.2.0.beta1)
actionmailer (5.2.0.beta2)
actionpack (= 5.2.0.beta2)
actionview (= 5.2.0.beta2)
activejob (= 5.2.0.beta2)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
actionpack (5.2.0.beta1)
actionview (= 5.2.0.beta1)
activesupport (= 5.2.0.beta1)
actionpack (5.2.0.beta2)
actionview (= 5.2.0.beta2)
activesupport (= 5.2.0.beta2)
rack (~> 2.0)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.2.0.beta1)
activesupport (= 5.2.0.beta1)
actionview (5.2.0.beta2)
activesupport (= 5.2.0.beta2)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (5.2.0.beta1)
activesupport (= 5.2.0.beta1)
activejob (5.2.0.beta2)
activesupport (= 5.2.0.beta2)
globalid (>= 0.3.6)
activemodel (5.2.0.beta1)
activesupport (= 5.2.0.beta1)
activerecord (5.2.0.beta1)
activemodel (= 5.2.0.beta1)
activesupport (= 5.2.0.beta1)
activemodel (5.2.0.beta2)
activesupport (= 5.2.0.beta2)
activerecord (5.2.0.beta2)
activemodel (= 5.2.0.beta2)
activesupport (= 5.2.0.beta2)
arel (>= 9.0)
activestorage (5.2.0.beta1)
actionpack (= 5.2.0.beta1)
activerecord (= 5.2.0.beta1)
activesupport (5.2.0.beta1)
activestorage (5.2.0.beta2)
actionpack (= 5.2.0.beta2)
activerecord (= 5.2.0.beta2)
activesupport (5.2.0.beta2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
rails (5.2.0.beta1)
actioncable (= 5.2.0.beta1)
actionmailer (= 5.2.0.beta1)
actionpack (= 5.2.0.beta1)
actionview (= 5.2.0.beta1)
activejob (= 5.2.0.beta1)
activemodel (= 5.2.0.beta1)
activerecord (= 5.2.0.beta1)
activestorage (= 5.2.0.beta1)
activesupport (= 5.2.0.beta1)
rails (5.2.0.beta2)
actioncable (= 5.2.0.beta2)
actionmailer (= 5.2.0.beta2)
actionpack (= 5.2.0.beta2)
actionview (= 5.2.0.beta2)
activejob (= 5.2.0.beta2)
activemodel (= 5.2.0.beta2)
activerecord (= 5.2.0.beta2)
activestorage (= 5.2.0.beta2)
activesupport (= 5.2.0.beta2)
bundler (>= 1.3.0)
railties (= 5.2.0.beta1)
railties (= 5.2.0.beta2)
sprockets-rails (>= 2.0.0)
railties (5.2.0.beta1)
actionpack (= 5.2.0.beta1)
activesupport (= 5.2.0.beta1)
railties (5.2.0.beta2)
actionpack (= 5.2.0.beta2)
activesupport (= 5.2.0.beta2)
method_source
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
Expand Down
2 changes: 1 addition & 1 deletion RAILS_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.2.0.beta1
5.2.0.beta2
5 changes: 5 additions & 0 deletions actioncable/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Rails 5.2.0.beta2 (November 28, 2017) ##

* No changes.


## Rails 5.2.0.beta1 (November 27, 2017) ##

* Removed deprecated evented redis adapter.
Expand Down
2 changes: 1 addition & 1 deletion actioncable/lib/action_cable/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module VERSION
MAJOR = 5
MINOR = 2
TINY = 0
PRE = "beta1"
PRE = "beta2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion actioncable/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "actioncable",
"version": "5.2.0-beta1",
"version": "5.2.0-beta2",
"description": "WebSocket framework for Ruby on Rails.",
"main": "lib/assets/compiled/action_cable.js",
"files": [
Expand Down
5 changes: 5 additions & 0 deletions actionmailer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Rails 5.2.0.beta2 (November 28, 2017) ##

* No changes.


## Rails 5.2.0.beta1 (November 27, 2017) ##

* Add `assert_enqueued_email_with` test helper.
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module VERSION
MAJOR = 5
MINOR = 2
TINY = 0
PRE = "beta1"
PRE = "beta2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions actionpack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
*Andrew White*


## Rails 5.2.0.beta2 (November 28, 2017) ##

* No changes.


## Rails 5.2.0.beta1 (November 27, 2017) ##

* Add DSL for configuring Content-Security-Policy header
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module VERSION
MAJOR = 5
MINOR = 2
TINY = 0
PRE = "beta1"
PRE = "beta2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions actionview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Rails 5.2.0.beta2 (November 28, 2017) ##

* No changes.


## Rails 5.2.0.beta1 (November 27, 2017) ##

* Change `form_with` to generates ids by default.
Expand Down
2 changes: 1 addition & 1 deletion actionview/lib/action_view/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module VERSION
MAJOR = 5
MINOR = 2
TINY = 0
PRE = "beta1"
PRE = "beta2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion actionview/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rails-ujs",
"version": "5.2.0-beta1",
"version": "5.2.0-beta2",
"description": "Ruby on Rails unobtrusive scripting adapter",
"main": "lib/assets/compiled/rails-ujs.js",
"files": [
Expand Down
5 changes: 5 additions & 0 deletions activejob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Rails 5.2.0.beta2 (November 28, 2017) ##

* No changes.


## Rails 5.2.0.beta1 (November 27, 2017) ##

* Support redis-rb 4.0.
Expand Down
2 changes: 1 addition & 1 deletion activejob/lib/active_job/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module VERSION
MAJOR = 5
MINOR = 2
TINY = 0
PRE = "beta1"
PRE = "beta2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions activemodel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Rails 5.2.0.beta2 (November 28, 2017) ##

* No changes.


## Rails 5.2.0.beta1 (November 27, 2017) ##

* Execute `ConfirmationValidator` validation when `_confirmation`'s value is `false`.
Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module VERSION
MAJOR = 5
MINOR = 2
TINY = 0
PRE = "beta1"
PRE = "beta2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions activerecord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Rails 5.2.0.beta2 (November 28, 2017) ##

* No changes.


## Rails 5.2.0.beta1 (November 27, 2017) ##

* Add new error class `QueryCanceled` which will be raised
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module VERSION
MAJOR = 5
MINOR = 2
TINY = 0
PRE = "beta1"
PRE = "beta2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
7 changes: 7 additions & 0 deletions activestorage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Rails 5.2.0.beta2 (November 28, 2017) ##

* Fix the gem adding the migrations files to the package.

*Yuji Yaginuma*


## Rails 5.2.0.beta1 (November 27, 2017) ##

* Added to Rails.
Expand Down
2 changes: 1 addition & 1 deletion activestorage/lib/active_storage/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module VERSION
MAJOR = 5
MINOR = 2
TINY = 0
PRE = "beta1"
PRE = "beta2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion activestorage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "activestorage",
"version": "5.2.0-beta1",
"version": "5.2.0-beta2",
"description": "Attach cloud and local files in Rails applications",
"main": "app/assets/javascripts/activestorage.js",
"files": [
Expand Down
5 changes: 5 additions & 0 deletions activesupport/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Rails 5.2.0.beta2 (November 28, 2017) ##

* No changes.


## Rails 5.2.0.beta1 (November 27, 2017) ##

* Changed default behaviour of `ActiveSupport::SecurityUtils.secure_compare`,
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module VERSION
MAJOR = 5
MINOR = 2
TINY = 0
PRE = "beta1"
PRE = "beta2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions guides/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Rails 5.2.0.beta2 (November 28, 2017) ##

* No changes.


## Rails 5.2.0.beta1 (November 27, 2017) ##

* No changes.
Expand Down
5 changes: 5 additions & 0 deletions railties/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Rails 5.2.0.beta2 (November 28, 2017) ##

* No changes.


## Rails 5.2.0.beta1 (November 27, 2017) ##

* Deprecate `after_bundle` callback in Rails plugin templates.
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module VERSION
MAJOR = 5
MINOR = 2
TINY = 0
PRE = "beta1"
PRE = "beta2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module VERSION
MAJOR = 5
MINOR = 2
TINY = 0
PRE = "beta1"
PRE = "beta2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down

0 comments on commit 2837d0f

Please sign in to comment.