Skip to content

Commit

Permalink
Preparing for 5.0.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Jun 19, 2017
1 parent a2e6b30 commit c52823a
Show file tree
Hide file tree
Showing 23 changed files with 54 additions and 54 deletions.
64 changes: 32 additions & 32 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -17,58 +17,58 @@ GIT
PATH
remote: .
specs:
actioncable (5.0.4.rc1)
actionpack (= 5.0.4.rc1)
actioncable (5.0.4)
actionpack (= 5.0.4)
nio4r (>= 1.2, < 3.0)
websocket-driver (~> 0.6.1)
actionmailer (5.0.4.rc1)
actionpack (= 5.0.4.rc1)
actionview (= 5.0.4.rc1)
activejob (= 5.0.4.rc1)
actionmailer (5.0.4)
actionpack (= 5.0.4)
actionview (= 5.0.4)
activejob (= 5.0.4)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
actionpack (5.0.4.rc1)
actionview (= 5.0.4.rc1)
activesupport (= 5.0.4.rc1)
actionpack (5.0.4)
actionview (= 5.0.4)
activesupport (= 5.0.4)
rack (~> 2.0)
rack-test (~> 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.0.4.rc1)
activesupport (= 5.0.4.rc1)
actionview (5.0.4)
activesupport (= 5.0.4)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (5.0.4.rc1)
activesupport (= 5.0.4.rc1)
activejob (5.0.4)
activesupport (= 5.0.4)
globalid (>= 0.3.6)
activemodel (5.0.4.rc1)
activesupport (= 5.0.4.rc1)
activerecord (5.0.4.rc1)
activemodel (= 5.0.4.rc1)
activesupport (= 5.0.4.rc1)
activemodel (5.0.4)
activesupport (= 5.0.4)
activerecord (5.0.4)
activemodel (= 5.0.4)
activesupport (= 5.0.4)
arel (~> 7.0)
activesupport (5.0.4.rc1)
activesupport (5.0.4)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
rails (5.0.4.rc1)
actioncable (= 5.0.4.rc1)
actionmailer (= 5.0.4.rc1)
actionpack (= 5.0.4.rc1)
actionview (= 5.0.4.rc1)
activejob (= 5.0.4.rc1)
activemodel (= 5.0.4.rc1)
activerecord (= 5.0.4.rc1)
activesupport (= 5.0.4.rc1)
rails (5.0.4)
actioncable (= 5.0.4)
actionmailer (= 5.0.4)
actionpack (= 5.0.4)
actionview (= 5.0.4)
activejob (= 5.0.4)
activemodel (= 5.0.4)
activerecord (= 5.0.4)
activesupport (= 5.0.4)
bundler (>= 1.3.0, < 2.0)
railties (= 5.0.4.rc1)
railties (= 5.0.4)
sprockets-rails (>= 2.0.0)
railties (5.0.4.rc1)
actionpack (= 5.0.4.rc1)
activesupport (= 5.0.4.rc1)
railties (5.0.4)
actionpack (= 5.0.4)
activesupport (= 5.0.4)
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.0.4.rc1
5.0.4
2 changes: 1 addition & 1 deletion actioncable/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 5.0.4.rc1 (June 14, 2017) ##
## Rails 5.0.4 (June 19, 2017) ##

* No changes.

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 @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 4
PRE = "rc1"
PRE = nil

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.0.4-rc1",
"version": "5.0.4",
"description": "WebSocket framework for Ruby on Rails.",
"main": "lib/assets/compiled/action_cable.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 5.0.4.rc1 (June 14, 2017) ##
## Rails 5.0.4 (June 19, 2017) ##

* No changes.

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 @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 4
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion actionpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 5.0.4.rc1 (June 14, 2017) ##
## Rails 5.0.4 (June 19, 2017) ##

* No changes.

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 @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 4
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion actionview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 5.0.4.rc1 (June 14, 2017) ##
## Rails 5.0.4 (June 19, 2017) ##

* No changes.

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 @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 4
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion activejob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 5.0.4.rc1 (June 14, 2017) ##
## Rails 5.0.4 (June 19, 2017) ##

* No changes.

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 @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 4
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion activemodel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 5.0.4.rc1 (June 14, 2017) ##
## Rails 5.0.4 (June 19, 2017) ##

* Fix regression in numericality validator when comparing Decimal and Float input
values with more scale than the schema.
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 @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 4
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion activerecord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 5.0.4.rc1 (June 14, 2017) ##
## Rails 5.0.4 (June 19, 2017) ##

* Restore previous behavior of collection proxies: their values can have
methods stubbed, and they respect extension modules applied by a default
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 @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 4
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion activesupport/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 5.0.4.rc1 (June 14, 2017) ##
## Rails 5.0.4 (June 19, 2017) ##

* No changes.

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 @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 4
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion guides/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 5.0.4.rc1 (June 14, 2017) ##
## Rails 5.0.4 (June 19, 2017) ##

* No changes.

Expand Down
2 changes: 1 addition & 1 deletion railties/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 5.0.4.rc1 (June 14, 2017) ##
## Rails 5.0.4 (June 19, 2017) ##

* No changes.

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 @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 4
PRE = "rc1"
PRE = nil

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 @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 4
PRE = "rc1"
PRE = nil

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

0 comments on commit c52823a

Please sign in to comment.