Skip to content

Commit

Permalink
Preparing for 5.1.3.rc1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspth committed Jul 19, 2017
1 parent f66cbf6 commit b6e24db
Show file tree
Hide file tree
Showing 24 changed files with 101 additions and 57 deletions.
68 changes: 34 additions & 34 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -26,58 +26,58 @@ GIT
PATH
remote: .
specs:
actioncable (5.1.2)
actionpack (= 5.1.2)
actioncable (5.1.3.rc1)
actionpack (= 5.1.3.rc1)
nio4r (~> 2.0)
websocket-driver (~> 0.6.1)
actionmailer (5.1.2)
actionpack (= 5.1.2)
actionview (= 5.1.2)
activejob (= 5.1.2)
actionmailer (5.1.3.rc1)
actionpack (= 5.1.3.rc1)
actionview (= 5.1.3.rc1)
activejob (= 5.1.3.rc1)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
actionpack (5.1.2)
actionview (= 5.1.2)
activesupport (= 5.1.2)
actionpack (5.1.3.rc1)
actionview (= 5.1.3.rc1)
activesupport (= 5.1.3.rc1)
rack (~> 2.0)
rack-test (~> 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.1.2)
activesupport (= 5.1.2)
actionview (5.1.3.rc1)
activesupport (= 5.1.3.rc1)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (5.1.2)
activesupport (= 5.1.2)
activejob (5.1.3.rc1)
activesupport (= 5.1.3.rc1)
globalid (>= 0.3.6)
activemodel (5.1.2)
activesupport (= 5.1.2)
activerecord (5.1.2)
activemodel (= 5.1.2)
activesupport (= 5.1.2)
activemodel (5.1.3.rc1)
activesupport (= 5.1.3.rc1)
activerecord (5.1.3.rc1)
activemodel (= 5.1.3.rc1)
activesupport (= 5.1.3.rc1)
arel (~> 8.0)
activesupport (5.1.2)
activesupport (5.1.3.rc1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
rails (5.1.2)
actioncable (= 5.1.2)
actionmailer (= 5.1.2)
actionpack (= 5.1.2)
actionview (= 5.1.2)
activejob (= 5.1.2)
activemodel (= 5.1.2)
activerecord (= 5.1.2)
activesupport (= 5.1.2)
rails (5.1.3.rc1)
actioncable (= 5.1.3.rc1)
actionmailer (= 5.1.3.rc1)
actionpack (= 5.1.3.rc1)
actionview (= 5.1.3.rc1)
activejob (= 5.1.3.rc1)
activemodel (= 5.1.3.rc1)
activerecord (= 5.1.3.rc1)
activesupport (= 5.1.3.rc1)
bundler (>= 1.3.0)
railties (= 5.1.2)
railties (= 5.1.3.rc1)
sprockets-rails (>= 2.0.0)
railties (5.1.2)
actionpack (= 5.1.2)
activesupport (= 5.1.2)
railties (5.1.3.rc1)
actionpack (= 5.1.3.rc1)
activesupport (= 5.1.3.rc1)
method_source
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
Expand Down Expand Up @@ -159,7 +159,7 @@ GEM
http_parser.rb (>= 0.6.0)
em-socksify (0.3.1)
eventmachine (>= 1.0.0.beta.4)
erubi (1.6.0)
erubi (1.6.1)
erubis (2.7.0)
event_emitter (0.2.5)
eventmachine (1.2.1)
Expand All @@ -186,7 +186,7 @@ GEM
activesupport (>= 4.2.0)
hiredis (0.6.1)
http_parser.rb (0.6.0)
i18n (0.8.4)
i18n (0.8.6)
jquery-rails (4.2.2)
rails-dom-testing (>= 1, < 3)
railties (>= 4.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.1.2
5.1.3.rc1
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.1.3.rc1 (July 19, 2017) ##

* No changes.


## Rails 5.1.2 (June 26, 2017) ##

* No changes.
Expand Down
4 changes: 2 additions & 2 deletions actioncable/lib/action_cable/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 1
TINY = 2
PRE = nil
TINY = 3
PRE = "rc1"

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.1.2",
"version": "5.1.3-rc1",
"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.1.3.rc1 (July 19, 2017) ##

* No changes.


## Rails 5.1.2 (June 26, 2017) ##

* No changes.
Expand Down
4 changes: 2 additions & 2 deletions actionmailer/lib/action_mailer/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 1
TINY = 2
PRE = nil
TINY = 3
PRE = "rc1"

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
@@ -1,3 +1,8 @@
## Rails 5.1.3.rc1 (July 19, 2017) ##

* No changes.


## Rails 5.1.2 (June 26, 2017) ##

* Fallback `ActionController::Parameters#to_s` to `Hash#to_s`.
Expand Down
4 changes: 2 additions & 2 deletions actionpack/lib/action_pack/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 1
TINY = 2
PRE = nil
TINY = 3
PRE = "rc1"

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.1.3.rc1 (July 19, 2017) ##

* No changes.


## Rails 5.1.2 (June 26, 2017) ##

* Fix issues with scopes and engine on `current_page?` method.
Expand Down
4 changes: 2 additions & 2 deletions actionview/lib/action_view/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 1
TINY = 2
PRE = nil
TINY = 3
PRE = "rc1"

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.1.2",
"version": "5.1.3-rc1",
"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.1.3.rc1 (July 19, 2017) ##

* No changes.


## Rails 5.1.2 (June 26, 2017) ##

* No changes.
Expand Down
4 changes: 2 additions & 2 deletions activejob/lib/active_job/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 1
TINY = 2
PRE = nil
TINY = 3
PRE = "rc1"

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.1.3.rc1 (July 19, 2017) ##

* No changes.


## Rails 5.1.2 (June 26, 2017) ##

* Fix regression in numericality validator when comparing Decimal and Float input
Expand Down
4 changes: 2 additions & 2 deletions activemodel/lib/active_model/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 1
TINY = 2
PRE = nil
TINY = 3
PRE = "rc1"

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

* `Relation#joins` is no longer affected by the target model's
`current_scope`, with the exception of `unscoped`.

Expand Down
4 changes: 2 additions & 2 deletions activerecord/lib/active_record/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 1
TINY = 2
PRE = nil
TINY = 3
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
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.1.3.rc1 (July 19, 2017) ##

* No changes.


## Rails 5.1.2 (June 26, 2017) ##

* Cache: Restore the `options = nil` argument for `LocalStore#clear`
Expand Down
4 changes: 2 additions & 2 deletions activesupport/lib/active_support/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 1
TINY = 2
PRE = nil
TINY = 3
PRE = "rc1"

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.1.3.rc1 (July 19, 2017) ##

* No changes.


## Rails 5.1.2 (June 26, 2017) ##

* No changes.
Expand Down
2 changes: 2 additions & 0 deletions railties/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## Rails 5.1.3.rc1 (July 19, 2017) ##

* Make Rails' test runner work better with minitest plugins.

By demoting the Rails test runner to just another minitest plugin —
Expand Down
4 changes: 2 additions & 2 deletions railties/lib/rails/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 1
TINY = 2
PRE = nil
TINY = 3
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
4 changes: 2 additions & 2 deletions version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 5
MINOR = 1
TINY = 2
PRE = nil
TINY = 3
PRE = "rc1"

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

0 comments on commit b6e24db

Please sign in to comment.