Skip to content

Commit 689df94

Browse files
committed
Merge branch '4-1-14' into 4-1-stable
2 parents 32ca78a + e694ac5 commit 689df94

File tree

19 files changed

+59
-44
lines changed

19 files changed

+59
-44
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)
5+
actionpack (= 4.1.14)
6+
actionview (= 4.1.14)
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)
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.rc1)
14-
activesupport (= 4.1.14.rc1)
13+
actionview (4.1.14)
14+
activesupport (= 4.1.14)
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)
18+
activesupport (= 4.1.14)
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)
21+
activemodel (= 4.1.14)
22+
activesupport (= 4.1.14)
2323
arel (~> 5.0.0)
24-
activesupport (4.1.14.rc1)
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.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)
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.rc1)
38+
railties (= 4.1.14)
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)
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.rc1
1+
4.1.14

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 (November 12, 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 = nil
1212

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

actionpack/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.rc1 (October 30, 2015) ##
1+
## Rails 4.1.14 (November 12, 2015) ##
22

33
* No changes.
44

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 = nil
1212

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

actionview/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
*Christoph Geschwind*
55

66

7-
## Rails 4.1.14.rc1 (October 30, 2015) ##
7+
## Rails 4.1.14 (November 12, 2015) ##
88

9-
* No changes.
9+
* Fix `mail_to` when called with `nil` as argument.
10+
11+
*Rafael Mendonça França*
1012

1113

1214
## Rails 4.1.13 (August 24, 2015) ##

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 = nil
1212

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

activemodel/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.rc1 (October 30, 2015) ##
1+
## Rails 4.1.14 (November 12, 2015) ##
22

33
* No changes.
44

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 = nil
1212

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

activerecord/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
*Paul Sadauskas*
44

55

6-
## Rails 4.1.14.rc1 (October 30, 2015) ##
6+
## Rails 4.1.14 (November 12, 2015) ##
7+
8+
* No longer pass deprecated option `-i` to `pg_dump`.
9+
10+
*Paul Sadauskas*
711

812
* Includes HABTM returns correct size now. It's caused by the join dependency
913
only instantiates one HABTM object because the join table hasn't a primary key.

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 = nil
1212

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

activesupport/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.rc1 (October 30, 2015) ##
1+
## Rails 4.1.14 (November 12, 2015) ##
22

33
* No changes.
44

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 = nil
1212

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

guides/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.rc1 (October 30, 2015) ##
1+
## Rails 4.1.14 (November 12, 2015) ##
22

33
* No changes.
44

railties/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.rc1 (October 30, 2015) ##
1+
## Rails 4.1.14 (November 12, 2015) ##
22

33
* No changes.
44

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 = nil
1212

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

tasks/release.rb

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
task :push => FRAMEWORKS.map { |f| "#{f}:push" } + ['rails:push']
110110

111111
task :ensure_clean_state do
112-
unless `git status -s | grep -v 'RAILS_VERSION\\|CHANGELOG'`.strip.empty?
112+
unless `git status -s | grep -v 'RAILS_VERSION\\|CHANGELOG\\|Gemfile.lock'`.strip.empty?
113113
abort "[ABORTING] `git status` reports a dirty tree. Make sure all changes are committed"
114114
end
115115

@@ -119,6 +119,10 @@
119119
end
120120
end
121121

122+
task :bundle do
123+
sh 'bundle check'
124+
end
125+
122126
task :commit do
123127
File.open('pkg/commit_message.txt', 'w') do |f|
124128
f.puts "# Preparing for #{version} release\n"
@@ -135,5 +139,5 @@
135139
sh "git push --tags"
136140
end
137141

138-
task :release => %w(ensure_clean_state build commit tag push)
142+
task :release => %w(ensure_clean_state build bundle commit tag push)
139143
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 = nil
1212

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

0 commit comments

Comments
 (0)