Skip to content

Commit 96c4b1a

Browse files
committed
Preparing for 4.1.14.rc2 release
1 parent bfff3c7 commit 96c4b1a

File tree

18 files changed

+73
-34
lines changed

18 files changed

+73
-34
lines changed

Gemfile.lock

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
11
PATH
22
remote: .
33
specs:
4-
actionmailer (4.1.14.rc1)
5-
actionpack (= 4.1.14.rc1)
6-
actionview (= 4.1.14.rc1)
4+
actionmailer (4.1.14.rc2)
5+
actionpack (= 4.1.14.rc2)
6+
actionview (= 4.1.14.rc2)
77
mail (~> 2.5, >= 2.5.4)
8-
actionpack (4.1.14.rc1)
9-
actionview (= 4.1.14.rc1)
10-
activesupport (= 4.1.14.rc1)
8+
actionpack (4.1.14.rc2)
9+
actionview (= 4.1.14.rc2)
10+
activesupport (= 4.1.14.rc2)
1111
rack (~> 1.5.2)
1212
rack-test (~> 0.6.2)
13-
actionview (4.1.14.rc1)
14-
activesupport (= 4.1.14.rc1)
13+
actionview (4.1.14.rc2)
14+
activesupport (= 4.1.14.rc2)
1515
builder (~> 3.1)
1616
erubis (~> 2.7.0)
17-
activemodel (4.1.14.rc1)
18-
activesupport (= 4.1.14.rc1)
17+
activemodel (4.1.14.rc2)
18+
activesupport (= 4.1.14.rc2)
1919
builder (~> 3.1)
20-
activerecord (4.1.14.rc1)
21-
activemodel (= 4.1.14.rc1)
22-
activesupport (= 4.1.14.rc1)
20+
activerecord (4.1.14.rc2)
21+
activemodel (= 4.1.14.rc2)
22+
activesupport (= 4.1.14.rc2)
2323
arel (~> 5.0.0)
24-
activesupport (4.1.14.rc1)
24+
activesupport (4.1.14.rc2)
2525
i18n (~> 0.6, >= 0.6.9)
2626
json (~> 1.7, >= 1.7.7)
2727
minitest (~> 5.1)
2828
thread_safe (~> 0.1)
2929
tzinfo (~> 1.1)
30-
rails (4.1.14.rc1)
31-
actionmailer (= 4.1.14.rc1)
32-
actionpack (= 4.1.14.rc1)
33-
actionview (= 4.1.14.rc1)
34-
activemodel (= 4.1.14.rc1)
35-
activerecord (= 4.1.14.rc1)
36-
activesupport (= 4.1.14.rc1)
30+
rails (4.1.14.rc2)
31+
actionmailer (= 4.1.14.rc2)
32+
actionpack (= 4.1.14.rc2)
33+
actionview (= 4.1.14.rc2)
34+
activemodel (= 4.1.14.rc2)
35+
activerecord (= 4.1.14.rc2)
36+
activesupport (= 4.1.14.rc2)
3737
bundler (>= 1.3.0, < 2.0)
38-
railties (= 4.1.14.rc1)
38+
railties (= 4.1.14.rc2)
3939
sprockets-rails (~> 2.0)
40-
railties (4.1.14.rc1)
41-
actionpack (= 4.1.14.rc1)
42-
activesupport (= 4.1.14.rc1)
40+
railties (4.1.14.rc2)
41+
actionpack (= 4.1.14.rc2)
42+
activesupport (= 4.1.14.rc2)
4343
rake (>= 0.8.7)
4444
thor (>= 0.18.1, < 2.0)
4545

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.1.14.rc1
1+
4.1.14.rc2

actionmailer/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.1.14.rc2 (November 05, 2015) ##
2+
3+
* No changes.
4+
5+
16
## Rails 4.1.14.rc1 (October 30, 2015) ##
27

38
* No changes.

actionmailer/lib/action_mailer/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 1
1010
TINY = 14
11-
PRE = "rc1"
11+
PRE = "rc2"
1212

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

actionpack/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.1.14.rc2 (November 05, 2015) ##
2+
3+
* No changes.
4+
5+
16
## Rails 4.1.14.rc1 (October 30, 2015) ##
27

38
* No changes.

actionpack/lib/action_pack/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 1
1010
TINY = 14
11-
PRE = "rc1"
11+
PRE = "rc2"
1212

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

actionview/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## Rails 4.1.14.rc2 (November 05, 2015) ##
2+
3+
* Fix `mail_to` when called with `nil` as argument.
4+
5+
*Rafael Mendonça França*
6+
7+
18
## Rails 4.1.14.rc1 (October 30, 2015) ##
29

310
* No changes.

actionview/lib/action_view/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 1
1010
TINY = 14
11-
PRE = "rc1"
11+
PRE = "rc2"
1212

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

activemodel/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.1.14.rc2 (November 05, 2015) ##
2+
3+
* No changes.
4+
5+
16
## Rails 4.1.14.rc1 (October 30, 2015) ##
27

38
* No changes.

activemodel/lib/active_model/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 1
1010
TINY = 14
11-
PRE = "rc1"
11+
PRE = "rc2"
1212

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

activerecord/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 4.1.14.rc2 (November 05, 2015) ##
2+
13
* No longer pass deprecated option `-i` to `pg_dump`.
24

35
*Paul Sadauskas*

activerecord/lib/active_record/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 1
1010
TINY = 14
11-
PRE = "rc1"
11+
PRE = "rc2"
1212

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

activesupport/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.1.14.rc2 (November 05, 2015) ##
2+
3+
* No changes.
4+
5+
16
## Rails 4.1.14.rc1 (October 30, 2015) ##
27

38
* No changes.

activesupport/lib/active_support/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 1
1010
TINY = 14
11-
PRE = "rc1"
11+
PRE = "rc2"
1212

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

guides/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.1.14.rc2 (November 05, 2015) ##
2+
3+
* No changes.
4+
5+
16
## Rails 4.1.14.rc1 (October 30, 2015) ##
27

38
* No changes.

railties/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.1.14.rc2 (November 05, 2015) ##
2+
3+
* No changes.
4+
5+
16
## Rails 4.1.14.rc1 (October 30, 2015) ##
27

38
* No changes.

railties/lib/rails/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 1
1010
TINY = 14
11-
PRE = "rc1"
11+
PRE = "rc2"
1212

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

version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 1
1010
TINY = 14
11-
PRE = "rc1"
11+
PRE = "rc2"
1212

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

0 commit comments

Comments
 (0)