Skip to content

Commit e694ac5

Browse files
committed
Preparing for 4.1.14 release
1 parent 84ef603 commit e694ac5

File tree

18 files changed

+42
-75
lines changed

18 files changed

+42
-75
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.rc2)
5-
actionpack (= 4.1.14.rc2)
6-
actionview (= 4.1.14.rc2)
4+
actionmailer (4.1.14)
5+
actionpack (= 4.1.14)
6+
actionview (= 4.1.14)
77
mail (~> 2.5, >= 2.5.4)
8-
actionpack (4.1.14.rc2)
9-
actionview (= 4.1.14.rc2)
10-
activesupport (= 4.1.14.rc2)
8+
actionpack (4.1.14)
9+
actionview (= 4.1.14)
10+
activesupport (= 4.1.14)
1111
rack (~> 1.5.2)
1212
rack-test (~> 0.6.2)
13-
actionview (4.1.14.rc2)
14-
activesupport (= 4.1.14.rc2)
13+
actionview (4.1.14)
14+
activesupport (= 4.1.14)
1515
builder (~> 3.1)
1616
erubis (~> 2.7.0)
17-
activemodel (4.1.14.rc2)
18-
activesupport (= 4.1.14.rc2)
17+
activemodel (4.1.14)
18+
activesupport (= 4.1.14)
1919
builder (~> 3.1)
20-
activerecord (4.1.14.rc2)
21-
activemodel (= 4.1.14.rc2)
22-
activesupport (= 4.1.14.rc2)
20+
activerecord (4.1.14)
21+
activemodel (= 4.1.14)
22+
activesupport (= 4.1.14)
2323
arel (~> 5.0.0)
24-
activesupport (4.1.14.rc2)
24+
activesupport (4.1.14)
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.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)
30+
rails (4.1.14)
31+
actionmailer (= 4.1.14)
32+
actionpack (= 4.1.14)
33+
actionview (= 4.1.14)
34+
activemodel (= 4.1.14)
35+
activerecord (= 4.1.14)
36+
activesupport (= 4.1.14)
3737
bundler (>= 1.3.0, < 2.0)
38-
railties (= 4.1.14.rc2)
38+
railties (= 4.1.14)
3939
sprockets-rails (~> 2.0)
40-
railties (4.1.14.rc2)
41-
actionpack (= 4.1.14.rc2)
42-
activesupport (= 4.1.14.rc2)
40+
railties (4.1.14)
41+
actionpack (= 4.1.14)
42+
activesupport (= 4.1.14)
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.rc2
1+
4.1.14

actionmailer/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 4.1.14.rc2 (November 05, 2015) ##
1+
## Rails 4.1.14 (November 12, 2015) ##
22

33
* No changes.
44

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 = "rc2"
11+
PRE = nil
1212

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

actionpack/CHANGELOG.md

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

83
* No changes.
94

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 = "rc2"
11+
PRE = nil
1212

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

actionview/CHANGELOG.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
1-
## Rails 4.1.14.rc2 (November 05, 2015) ##
1+
## Rails 4.1.14 (November 12, 2015) ##
22

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

55
*Rafael Mendonça França*
66

77

8-
## Rails 4.1.14.rc1 (October 30, 2015) ##
9-
10-
* No changes.
11-
12-
138
## Rails 4.1.13 (August 24, 2015) ##
149

1510
* 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 = "rc2"
11+
PRE = nil
1212

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

activemodel/CHANGELOG.md

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

83
* No changes.
94

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 = "rc2"
11+
PRE = nil
1212

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

activerecord/CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
## Rails 4.1.14.rc2 (November 05, 2015) ##
1+
## Rails 4.1.14 (November 12, 2015) ##
22

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

55
*Paul Sadauskas*
66

7-
8-
## Rails 4.1.14.rc1 (October 30, 2015) ##
9-
107
* Includes HABTM returns correct size now. It's caused by the join dependency
118
only instantiates one HABTM object because the join table hasn't a primary key.
129

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 = "rc2"
11+
PRE = nil
1212

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

activesupport/CHANGELOG.md

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

83
* No changes.
94

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 = "rc2"
11+
PRE = nil
1212

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

guides/CHANGELOG.md

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

83
* No changes.
94

railties/CHANGELOG.md

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

83
* No changes.
94

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 = "rc2"
11+
PRE = nil
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 = "rc2"
11+
PRE = nil
1212

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

0 commit comments

Comments
 (0)