Skip to content

Commit a0e0b67

Browse files
committed
Preparing for 4.2.6 release
1 parent ef8ace7 commit a0e0b67

File tree

20 files changed

+49
-49
lines changed

20 files changed

+49
-49
lines changed

Gemfile.lock

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -14,55 +14,55 @@ GIT
1414
PATH
1515
remote: .
1616
specs:
17-
actionmailer (4.2.6.rc1)
18-
actionpack (= 4.2.6.rc1)
19-
actionview (= 4.2.6.rc1)
20-
activejob (= 4.2.6.rc1)
17+
actionmailer (4.2.6)
18+
actionpack (= 4.2.6)
19+
actionview (= 4.2.6)
20+
activejob (= 4.2.6)
2121
mail (~> 2.5, >= 2.5.4)
2222
rails-dom-testing (~> 1.0, >= 1.0.5)
23-
actionpack (4.2.6.rc1)
24-
actionview (= 4.2.6.rc1)
25-
activesupport (= 4.2.6.rc1)
23+
actionpack (4.2.6)
24+
actionview (= 4.2.6)
25+
activesupport (= 4.2.6)
2626
rack (~> 1.6)
2727
rack-test (~> 0.6.2)
2828
rails-dom-testing (~> 1.0, >= 1.0.5)
2929
rails-html-sanitizer (~> 1.0, >= 1.0.2)
30-
actionview (4.2.6.rc1)
31-
activesupport (= 4.2.6.rc1)
30+
actionview (4.2.6)
31+
activesupport (= 4.2.6)
3232
builder (~> 3.1)
3333
erubis (~> 2.7.0)
3434
rails-dom-testing (~> 1.0, >= 1.0.5)
3535
rails-html-sanitizer (~> 1.0, >= 1.0.2)
36-
activejob (4.2.6.rc1)
37-
activesupport (= 4.2.6.rc1)
36+
activejob (4.2.6)
37+
activesupport (= 4.2.6)
3838
globalid (>= 0.3.0)
39-
activemodel (4.2.6.rc1)
40-
activesupport (= 4.2.6.rc1)
39+
activemodel (4.2.6)
40+
activesupport (= 4.2.6)
4141
builder (~> 3.1)
42-
activerecord (4.2.6.rc1)
43-
activemodel (= 4.2.6.rc1)
44-
activesupport (= 4.2.6.rc1)
42+
activerecord (4.2.6)
43+
activemodel (= 4.2.6)
44+
activesupport (= 4.2.6)
4545
arel (~> 6.0)
46-
activesupport (4.2.6.rc1)
46+
activesupport (4.2.6)
4747
i18n (~> 0.7)
4848
json (~> 1.7, >= 1.7.7)
4949
minitest (~> 5.1)
5050
thread_safe (~> 0.3, >= 0.3.4)
5151
tzinfo (~> 1.1)
52-
rails (4.2.6.rc1)
53-
actionmailer (= 4.2.6.rc1)
54-
actionpack (= 4.2.6.rc1)
55-
actionview (= 4.2.6.rc1)
56-
activejob (= 4.2.6.rc1)
57-
activemodel (= 4.2.6.rc1)
58-
activerecord (= 4.2.6.rc1)
59-
activesupport (= 4.2.6.rc1)
52+
rails (4.2.6)
53+
actionmailer (= 4.2.6)
54+
actionpack (= 4.2.6)
55+
actionview (= 4.2.6)
56+
activejob (= 4.2.6)
57+
activemodel (= 4.2.6)
58+
activerecord (= 4.2.6)
59+
activesupport (= 4.2.6)
6060
bundler (>= 1.3.0, < 2.0)
61-
railties (= 4.2.6.rc1)
61+
railties (= 4.2.6)
6262
sprockets-rails
63-
railties (4.2.6.rc1)
64-
actionpack (= 4.2.6.rc1)
65-
activesupport (= 4.2.6.rc1)
63+
railties (4.2.6)
64+
actionpack (= 4.2.6)
65+
activesupport (= 4.2.6)
6666
rake (>= 0.8.7)
6767
thor (>= 0.18.1, < 2.0)
6868

@@ -198,7 +198,7 @@ GEM
198198
thread
199199
sprockets (3.0.3)
200200
rack (~> 1.0)
201-
sprockets-rails (3.0.3)
201+
sprockets-rails (3.0.4)
202202
actionpack (>= 4.0)
203203
activesupport (>= 4.0)
204204
sprockets (>= 3.0.0)

RAILS_VERSION

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

actionmailer/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 4.2.6.rc1 (March 01, 2016) ##
1+
## Rails 4.2.6 (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 = 2
1010
TINY = 6
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.2.6.rc1 (March 01, 2016) ##
1+
## Rails 4.2.6 (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 = 2
1010
TINY = 6
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.2.6.rc1 (March 01, 2016) ##
1+
## Rails 4.2.6 (March 07, 2016) ##
22

33
* Fix stripping the digest from the automatically generated img tag alt
44
attribute when assets are handled by Sprockets >=3.0.

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 = 2
1010
TINY = 6
11-
PRE = "rc1"
11+
PRE = nil
1212

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

activejob/CHANGELOG.md

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

33
* No changes.
44

activejob/lib/active_job/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 = 2
1010
TINY = 6
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.2.6.rc1 (March 01, 2016) ##
1+
## Rails 4.2.6 (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 = 2
1010
TINY = 6
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.2.6.rc1 (March 01, 2016) ##
1+
## Rails 4.2.6 (March 07, 2016) ##
22

33
* Fix a bug where using `t.foreign_key` twice with the same `to_table` within
44
the same table definition would only create one foreign 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 = 2
1010
TINY = 6
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.2.6.rc1 (March 01, 2016) ##
1+
## Rails 4.2.6 (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 = 2
1010
TINY = 6
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.2.6.rc1 (March 01, 2016) ##
1+
## Rails 4.2.6 (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.2.6.rc1 (March 01, 2016) ##
1+
## Rails 4.2.6 (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 = 2
1010
TINY = 6
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 = 2
1010
TINY = 6
11-
PRE = "rc1"
11+
PRE = nil
1212

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

0 commit comments

Comments
 (0)