Skip to content

Commit d5c4b82

Browse files
committed
Preparing for 4.1.15 release
1 parent 06d2bfd commit d5c4b82

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

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.15.rc1 (March 01, 2016) ##
1+
## Rails 4.1.15 (March 07, 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 = 15
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.15.rc1 (March 01, 2016) ##
1+
## Rails 4.1.15 (March 07, 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 = 15
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.15.rc1 (March 01, 2016) ##
1+
## Rails 4.1.15 (March 07, 2016) ##
22

33
* Changed the meaning of `render "foo/bar"`.
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 = 15
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.15.rc1 (March 01, 2016) ##
1+
## Rails 4.1.15 (March 07, 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 = 15
11-
PRE = "rc1"
11+
PRE = nil
1212

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

activerecord/CHANGELOG.md

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

33
* Fixes custom primary keys for associations when calling `Relation#where`
44

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 = 15
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.15.rc1 (March 01, 2016) ##
1+
## Rails 4.1.15 (March 07, 2016) ##
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 = 15
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.15.rc1 (March 01, 2016) ##
1+
## Rails 4.1.15 (March 07, 2016) ##
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.15.rc1 (March 01, 2016) ##
1+
## Rails 4.1.15 (March 07, 2016) ##
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 = 15
11-
PRE = "rc1"
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 = 15
11-
PRE = "rc1"
11+
PRE = nil
1212

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

0 commit comments

Comments
 (0)