Skip to content

Commit

Permalink
Preparing for 4.2.4.rc1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Aug 14, 2015
1 parent 0019301 commit b5cb514
Show file tree
Hide file tree
Showing 19 changed files with 49 additions and 20 deletions.
2 changes: 1 addition & 1 deletion RAILS_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2.3
4.2.4.rc1
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.4 (August 14, 2015) ##

* No Changes *


## Rails 4.2.3 (June 25, 2015) ##

* `assert_emails` in block form use the given number as expected value.
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 = 4
MINOR = 2
TINY = 3
PRE = nil
TINY = 4
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 2 additions & 0 deletions actionpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## Rails 4.2.4 (August 14, 2015) ##

* ActionController::TestSession now accepts a default value as well as
a block for generating a default value based off the key provided.

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

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
6 changes: 5 additions & 1 deletion actionview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Rails 4.2.4 (August 14, 2015) ##

* No Changes *


## Rails 4.2.3 (June 25, 2015) ##

* `translate` should handle `raise` flag correctly in case of both main and default
Expand All @@ -21,7 +26,6 @@

*Justin Coyne*


* `number_to_percentage` does not crash with `Float::NAN` or `Float::INFINITY`
as input when `precision: 0` is used.

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

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 2 additions & 0 deletions activejob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## Rails 4.2.4 (August 14, 2015) ##

* Include I18n.locale into job serialization/deserialization and use it around
`perform`.

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 = 4
MINOR = 2
TINY = 3
PRE = nil
TINY = 4
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 4.2.4 (August 14, 2015) ##

* No Changes *


## Rails 4.2.3 (June 25, 2015) ##

* No Changes *
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 = 4
MINOR = 2
TINY = 3
PRE = nil
TINY = 4
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 4.2.4 (August 14, 2015) ##

* Skip statement cache on through association reader.

If the through class has default scopes we should skip the statement
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 = 4
MINOR = 2
TINY = 3
PRE = nil
TINY = 4
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 2 additions & 0 deletions activesupport/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## Rails 4.2.4 (August 14, 2015) ##

* Fix a `SystemStackError` when encoding an `Enumerable` with `json` gem and
with the Active Support JSON encoder loaded.

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 = 4
MINOR = 2
TINY = 3
PRE = nil
TINY = 4
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 4.2.4 (August 14, 2015) ##

* No Changes *


## Rails 4.2.3 (June 25, 2015) ##

* 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 4.2.4 (August 14, 2015) ##

* Fix STATS_DIRECTORIES already defined warning when running rake from within
the top level directory of an engine that has a test app.

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

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

0 comments on commit b5cb514

Please sign in to comment.