Skip to content

Commit 73521d5

Browse files
committedNov 12, 2015
Preparing for 4.2.5 release
1 parent 739112e commit 73521d5

File tree

20 files changed

+49
-89
lines changed

20 files changed

+49
-89
lines changed
 

‎Gemfile.lock

+29-29
Original file line numberDiff line numberDiff line change
@@ -14,55 +14,55 @@ GIT
1414
PATH
1515
remote: .
1616
specs:
17-
actionmailer (4.2.5.rc2)
18-
actionpack (= 4.2.5.rc2)
19-
actionview (= 4.2.5.rc2)
20-
activejob (= 4.2.5.rc2)
17+
actionmailer (4.2.5)
18+
actionpack (= 4.2.5)
19+
actionview (= 4.2.5)
20+
activejob (= 4.2.5)
2121
mail (~> 2.5, >= 2.5.4)
2222
rails-dom-testing (~> 1.0, >= 1.0.5)
23-
actionpack (4.2.5.rc2)
24-
actionview (= 4.2.5.rc2)
25-
activesupport (= 4.2.5.rc2)
23+
actionpack (4.2.5)
24+
actionview (= 4.2.5)
25+
activesupport (= 4.2.5)
2626
rack (~> 1.6)
2727
rack-test (~> 0.6.2)
2828
rails-dom-testing (~> 1.0, >= 1.0.5)
2929
rails-html-sanitizer (~> 1.0, >= 1.0.2)
30-
actionview (4.2.5.rc2)
31-
activesupport (= 4.2.5.rc2)
30+
actionview (4.2.5)
31+
activesupport (= 4.2.5)
3232
builder (~> 3.1)
3333
erubis (~> 2.7.0)
3434
rails-dom-testing (~> 1.0, >= 1.0.5)
3535
rails-html-sanitizer (~> 1.0, >= 1.0.2)
36-
activejob (4.2.5.rc2)
37-
activesupport (= 4.2.5.rc2)
36+
activejob (4.2.5)
37+
activesupport (= 4.2.5)
3838
globalid (>= 0.3.0)
39-
activemodel (4.2.5.rc2)
40-
activesupport (= 4.2.5.rc2)
39+
activemodel (4.2.5)
40+
activesupport (= 4.2.5)
4141
builder (~> 3.1)
42-
activerecord (4.2.5.rc2)
43-
activemodel (= 4.2.5.rc2)
44-
activesupport (= 4.2.5.rc2)
42+
activerecord (4.2.5)
43+
activemodel (= 4.2.5)
44+
activesupport (= 4.2.5)
4545
arel (~> 6.0)
46-
activesupport (4.2.5.rc2)
46+
activesupport (4.2.5)
4747
i18n (~> 0.7)
4848
json (~> 1.7, >= 1.7.7)
4949
minitest (~> 5.1)
5050
thread_safe (~> 0.3, >= 0.3.4)
5151
tzinfo (~> 1.1)
52-
rails (4.2.5.rc2)
53-
actionmailer (= 4.2.5.rc2)
54-
actionpack (= 4.2.5.rc2)
55-
actionview (= 4.2.5.rc2)
56-
activejob (= 4.2.5.rc2)
57-
activemodel (= 4.2.5.rc2)
58-
activerecord (= 4.2.5.rc2)
59-
activesupport (= 4.2.5.rc2)
52+
rails (4.2.5)
53+
actionmailer (= 4.2.5)
54+
actionpack (= 4.2.5)
55+
actionview (= 4.2.5)
56+
activejob (= 4.2.5)
57+
activemodel (= 4.2.5)
58+
activerecord (= 4.2.5)
59+
activesupport (= 4.2.5)
6060
bundler (>= 1.3.0, < 2.0)
61-
railties (= 4.2.5.rc2)
61+
railties (= 4.2.5)
6262
sprockets-rails
63-
railties (4.2.5.rc2)
64-
actionpack (= 4.2.5.rc2)
65-
activesupport (= 4.2.5.rc2)
63+
railties (4.2.5)
64+
actionpack (= 4.2.5)
65+
activesupport (= 4.2.5)
6666
rake (>= 0.8.7)
6767
thor (>= 0.18.1, < 2.0)
6868

‎RAILS_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.2.5.rc2
1+
4.2.5

‎actionmailer/CHANGELOG.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
## Rails 4.2.5.rc2 (November 05, 2015) ##
2-
3-
* No changes.
4-
5-
6-
## Rails 4.2.5.rc1 (October 30, 2015) ##
1+
## Rails 4.2.5 (November 12, 2015) ##
72

83
* No changes.
94

‎actionmailer/lib/action_mailer/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "rc2"
11+
PRE = nil
1212

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

‎actionpack/CHANGELOG.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
## Rails 4.2.5.rc2 (November 05, 2015) ##
2-
3-
* No changes.
4-
5-
6-
## Rails 4.2.5.rc1 (October 30, 2015) ##
1+
## Rails 4.2.5 (November 12, 2015) ##
72

83
* `ActionController::TestCase` can teardown gracefully if an error is raised
94
early in the `setup` chain.

‎actionpack/lib/action_pack/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "rc2"
11+
PRE = nil
1212

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

‎actionview/CHANGELOG.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
## Rails 4.2.5.rc2 (November 05, 2015) ##
1+
## Rails 4.2.5 (November 12, 2015) ##
22

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

55
*Rafael Mendonça França*
66

7-
8-
## Rails 4.2.5.rc1 (October 30, 2015) ##
9-
107
* `url_for` does not modify its arguments when generating polymorphic URLs.
118

129
*Bernerd Schaefer*

‎actionview/lib/action_view/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "rc2"
11+
PRE = nil
1212

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

‎activejob/CHANGELOG.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
## Rails 4.2.5.rc2 (November 05, 2015) ##
2-
3-
* No changes.
4-
5-
6-
## Rails 4.2.5.rc1 (October 30, 2015) ##
1+
## Rails 4.2.5 (November 12, 2015) ##
72

83
* No changes.
94

@@ -17,6 +12,7 @@
1712

1813
*Johannes Opper*
1914

15+
2016
## Rails 4.2.3 (June 25, 2015) ##
2117

2218
* `assert_enqueued_jobs` and `assert_performed_jobs` in block form use the

‎activejob/lib/active_job/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "rc2"
11+
PRE = nil
1212

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

‎activemodel/CHANGELOG.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
## Rails 4.2.5.rc2 (November 05, 2015) ##
2-
3-
* No changes.
4-
5-
6-
## Rails 4.2.5.rc1 (October 30, 2015) ##
1+
## Rails 4.2.5 (November 12, 2015) ##
72

83
* No changes.
94

‎activemodel/lib/active_model/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "rc2"
11+
PRE = nil
1212

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

‎activerecord/CHANGELOG.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
## Rails 4.2.5.rc2 (November 05, 2015) ##
1+
## Rails 4.2.5 (November 12, 2015) ##
22

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

55
*Paul Sadauskas*
66

7-
8-
## Rails 4.2.5.rc1 (October 30, 2015) ##
9-
107
* Set `scope.reordering_value` to `true` if :reordering values are specified.
118

129
Fixes #21886.

‎activerecord/lib/active_record/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "rc2"
11+
PRE = nil
1212

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

‎activesupport/CHANGELOG.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
## Rails 4.2.5.rc2 (November 05, 2015) ##
2-
3-
* No changes.
4-
5-
6-
## Rails 4.2.5.rc1 (October 30, 2015) ##
1+
## Rails 4.2.5 (November 12, 2015) ##
72

83
* Fix `TimeWithZone#eql?` to properly handle `TimeWithZone` created from `DateTime`:
94
twz = DateTime.now.in_time_zone

‎activesupport/lib/active_support/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "rc2"
11+
PRE = nil
1212

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

‎guides/CHANGELOG.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
## Rails 4.2.5.rc2 (November 05, 2015) ##
2-
3-
* No changes.
4-
5-
6-
## Rails 4.2.5.rc1 (October 30, 2015) ##
1+
## Rails 4.2.5 (November 12, 2015) ##
72

83
* No changes.
94

‎railties/CHANGELOG.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
## Rails 4.2.5.rc2 (November 05, 2015) ##
2-
3-
* No changes.
4-
5-
6-
## Rails 4.2.5.rc1 (October 30, 2015) ##
1+
## Rails 4.2.5 (November 12, 2015) ##
72

83
* Fix displaying mailer previews on non local requests when config
94
`action_mailer.show_previews` is set

‎railties/lib/rails/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "rc2"
11+
PRE = nil
1212

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

‎version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 2
1010
TINY = 5
11-
PRE = "rc2"
11+
PRE = nil
1212

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

0 commit comments

Comments
 (0)
Please sign in to comment.