Skip to content

Commit d880330

Browse files
committed
Preparing for 4.1.16 release
1 parent 871d63e commit d880330

File tree

18 files changed

+42
-42
lines changed

18 files changed

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

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.16.rc1 (July 01, 2016) ##
1+
## Rails 4.1.16 (July 12, 2016) ##
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 = 16
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.16.rc1 (July 01, 2016) ##
1+
## Rails 4.1.16 (July 12, 2016) ##
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 = 16
11-
PRE = "rc1"
11+
PRE = nil
1212

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

actionview/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 4.1.16.rc1 (July 01, 2016) ##
1+
## Rails 4.1.16 (July 12, 2016) ##
22

33
* No changes.
44

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 = 16
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.16.rc1 (July 01, 2016) ##
1+
## Rails 4.1.16 (July 12, 2016) ##
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 = 16
11-
PRE = "rc1"
11+
PRE = nil
1212

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

0 commit comments

Comments
 (0)