Skip to content

Commit

Permalink
Preparing for 4.2.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Jun 25, 2015
1 parent 496bbfe commit 6ac6daa
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion RAILS_VERSION
@@ -1 +1 @@
4.2.3.rc1
4.2.3
2 changes: 1 addition & 1 deletion actionmailer/CHANGELOG.md
@@ -1,4 +1,4 @@
## Rails 4.2.3 (June 22, 2015) ##
## Rails 4.2.3 (June 25, 2015) ##

* `assert_emails` in block form use the given number as expected value.
This makes the error message much easier to understand.
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 2
TINY = 3
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion actionpack/CHANGELOG.md
@@ -1,4 +1,4 @@
## Rails 4.2.3 (June 22, 2015) ##
## Rails 4.2.3 (June 25, 2015) ##

* Fix rake routes not showing the right format when
nesting multiple routes.
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 2
TINY = 3
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion actionview/CHANGELOG.md
@@ -1,4 +1,4 @@
## Rails 4.2.3 (June 22, 2015) ##
## Rails 4.2.3 (June 25, 2015) ##

* `translate` should handle `raise` flag correctly in case of both main and default
translation is missing.
Expand Down
2 changes: 1 addition & 1 deletion actionview/lib/action_view/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 2
TINY = 3
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion activejob/CHANGELOG.md
@@ -1,4 +1,4 @@
## Rails 4.2.3 (June 22, 2015) ##
## Rails 4.2.3 (June 25, 2015) ##

* `assert_enqueued_jobs` and `assert_performed_jobs` in block form use the
given number as expected value. This makes the error message much easier to
Expand Down
2 changes: 1 addition & 1 deletion activejob/lib/active_job/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 2
TINY = 3
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion activemodel/CHANGELOG.md
@@ -1,4 +1,4 @@
## Rails 4.2.3 (June 22, 2015) ##
## Rails 4.2.3 (June 25, 2015) ##

* No Changes *

Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 2
TINY = 3
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion activerecord/CHANGELOG.md
@@ -1,4 +1,4 @@
## Rails 4.2.3 (June 22, 2015) ##
## Rails 4.2.3 (June 25, 2015) ##

* Let `WITH` queries (Common Table Expressions) be explainable.

Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 2
TINY = 3
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion activesupport/CHANGELOG.md
@@ -1,4 +1,4 @@
## Rails 4.2.3 (June 22, 2015) ##
## Rails 4.2.3 (June 25, 2015) ##

* Fix a range of values for parameters of the Time#change

Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 2
TINY = 3
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion guides/CHANGELOG.md
@@ -1,4 +1,4 @@
## Rails 4.2.3 (June 22, 2015) ##
## Rails 4.2.3 (June 25, 2015) ##

* No Changes *

Expand Down
2 changes: 1 addition & 1 deletion railties/CHANGELOG.md
@@ -1,4 +1,4 @@
## Rails 4.2.3 (June 22, 2015) ##
## Rails 4.2.3 (June 25, 2015) ##

* `assert_file` understands paths with special characters
(eg. `v0.1.4~alpha+nightly`).
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 2
TINY = 3
PRE = "rc1"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 2
TINY = 3
PRE = "rc1"
PRE = nil

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

0 comments on commit 6ac6daa

Please sign in to comment.