Skip to content

Commit

Permalink
Preparing for 4.2.5.rc2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Nov 5, 2015
1 parent a2e0703 commit 5bda404
Show file tree
Hide file tree
Showing 20 changed files with 83 additions and 39 deletions.
58 changes: 29 additions & 29 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,55 +14,55 @@ GIT
PATH
remote: .
specs:
actionmailer (4.2.5.rc1)
actionpack (= 4.2.5.rc1)
actionview (= 4.2.5.rc1)
activejob (= 4.2.5.rc1)
actionmailer (4.2.5.rc2)
actionpack (= 4.2.5.rc2)
actionview (= 4.2.5.rc2)
activejob (= 4.2.5.rc2)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (4.2.5.rc1)
actionview (= 4.2.5.rc1)
activesupport (= 4.2.5.rc1)
actionpack (4.2.5.rc2)
actionview (= 4.2.5.rc2)
activesupport (= 4.2.5.rc2)
rack (~> 1.6)
rack-test (~> 0.6.2)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (4.2.5.rc1)
activesupport (= 4.2.5.rc1)
actionview (4.2.5.rc2)
activesupport (= 4.2.5.rc2)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
activejob (4.2.5.rc1)
activesupport (= 4.2.5.rc1)
activejob (4.2.5.rc2)
activesupport (= 4.2.5.rc2)
globalid (>= 0.3.0)
activemodel (4.2.5.rc1)
activesupport (= 4.2.5.rc1)
activemodel (4.2.5.rc2)
activesupport (= 4.2.5.rc2)
builder (~> 3.1)
activerecord (4.2.5.rc1)
activemodel (= 4.2.5.rc1)
activesupport (= 4.2.5.rc1)
activerecord (4.2.5.rc2)
activemodel (= 4.2.5.rc2)
activesupport (= 4.2.5.rc2)
arel (~> 6.0)
activesupport (4.2.5.rc1)
activesupport (4.2.5.rc2)
i18n (~> 0.7)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
rails (4.2.5.rc1)
actionmailer (= 4.2.5.rc1)
actionpack (= 4.2.5.rc1)
actionview (= 4.2.5.rc1)
activejob (= 4.2.5.rc1)
activemodel (= 4.2.5.rc1)
activerecord (= 4.2.5.rc1)
activesupport (= 4.2.5.rc1)
rails (4.2.5.rc2)
actionmailer (= 4.2.5.rc2)
actionpack (= 4.2.5.rc2)
actionview (= 4.2.5.rc2)
activejob (= 4.2.5.rc2)
activemodel (= 4.2.5.rc2)
activerecord (= 4.2.5.rc2)
activesupport (= 4.2.5.rc2)
bundler (>= 1.3.0, < 2.0)
railties (= 4.2.5.rc1)
railties (= 4.2.5.rc2)
sprockets-rails
railties (4.2.5.rc1)
actionpack (= 4.2.5.rc1)
activesupport (= 4.2.5.rc1)
railties (4.2.5.rc2)
actionpack (= 4.2.5.rc2)
activesupport (= 4.2.5.rc2)
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 @@
4.2.5.rc1
4.2.5.rc2
5 changes: 5 additions & 0 deletions actionmailer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Rails 4.2.5.rc2 (November 05, 2015) ##

* No changes.


## Rails 4.2.5.rc1 (October 30, 2015) ##

* 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 = 4
MINOR = 2
TINY = 5
PRE = "rc1"
PRE = "rc2"

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 4.2.5.rc2 (November 05, 2015) ##

* No changes.


## Rails 4.2.5.rc1 (October 30, 2015) ##

* `ActionController::TestCase` can teardown gracefully if an error is raised
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 = 4
MINOR = 2
TINY = 5
PRE = "rc1"
PRE = "rc2"

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

* Fix `mail_to` when called with `nil` as argument.

*Rafael Mendonça França*


## Rails 4.2.5.rc1 (October 30, 2015) ##

* `url_for` does not modify its arguments when generating polymorphic URLs.
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 = 4
MINOR = 2
TINY = 5
PRE = "rc1"
PRE = "rc2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
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 4.2.5.rc2 (November 05, 2015) ##

* No changes.


## Rails 4.2.5.rc1 (October 30, 2015) ##

* 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 = 4
MINOR = 2
TINY = 5
PRE = "rc1"
PRE = "rc2"

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 4.2.5.rc2 (November 05, 2015) ##

* No changes.


## Rails 4.2.5.rc1 (October 30, 2015) ##

* No changes.
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 = 4
MINOR = 2
TINY = 5
PRE = "rc1"
PRE = "rc2"

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 4.2.5.rc2 (November 05, 2015) ##

* No longer pass deprecated option `-i` to `pg_dump`.

*Paul Sadauskas*
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 = 4
MINOR = 2
TINY = 5
PRE = "rc1"
PRE = "rc2"

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 4.2.5.rc2 (November 05, 2015) ##

* No changes.


## Rails 4.2.5.rc1 (October 30, 2015) ##

* Fix `TimeWithZone#eql?` to properly handle `TimeWithZone` created from `DateTime`:
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 = 4
MINOR = 2
TINY = 5
PRE = "rc1"
PRE = "rc2"

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 4.2.5.rc2 (November 05, 2015) ##

* No changes.


## Rails 4.2.5.rc1 (October 30, 2015) ##

* 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 4.2.5.rc2 (November 05, 2015) ##

* No changes.


## Rails 4.2.5.rc1 (October 30, 2015) ##

* Fix displaying mailer previews on non local requests when config
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 = 4
MINOR = 2
TINY = 5
PRE = "rc1"
PRE = "rc2"

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 = 4
MINOR = 2
TINY = 5
PRE = "rc1"
PRE = "rc2"

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

0 comments on commit 5bda404

Please sign in to comment.