Skip to content

Commit 5a85938

Browse files
committed
Preparing for 4.2.7.rc1 release
1 parent 6ac6f1c commit 5a85938

File tree

20 files changed

+85
-49
lines changed

20 files changed

+85
-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)
18-
actionpack (= 4.2.6)
19-
actionview (= 4.2.6)
20-
activejob (= 4.2.6)
17+
actionmailer (4.2.7.rc1)
18+
actionpack (= 4.2.7.rc1)
19+
actionview (= 4.2.7.rc1)
20+
activejob (= 4.2.7.rc1)
2121
mail (~> 2.5, >= 2.5.4)
2222
rails-dom-testing (~> 1.0, >= 1.0.5)
23-
actionpack (4.2.6)
24-
actionview (= 4.2.6)
25-
activesupport (= 4.2.6)
23+
actionpack (4.2.7.rc1)
24+
actionview (= 4.2.7.rc1)
25+
activesupport (= 4.2.7.rc1)
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)
31-
activesupport (= 4.2.6)
30+
actionview (4.2.7.rc1)
31+
activesupport (= 4.2.7.rc1)
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)
37-
activesupport (= 4.2.6)
36+
activejob (4.2.7.rc1)
37+
activesupport (= 4.2.7.rc1)
3838
globalid (>= 0.3.0)
39-
activemodel (4.2.6)
40-
activesupport (= 4.2.6)
39+
activemodel (4.2.7.rc1)
40+
activesupport (= 4.2.7.rc1)
4141
builder (~> 3.1)
42-
activerecord (4.2.6)
43-
activemodel (= 4.2.6)
44-
activesupport (= 4.2.6)
42+
activerecord (4.2.7.rc1)
43+
activemodel (= 4.2.7.rc1)
44+
activesupport (= 4.2.7.rc1)
4545
arel (~> 6.0)
46-
activesupport (4.2.6)
46+
activesupport (4.2.7.rc1)
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)
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)
52+
rails (4.2.7.rc1)
53+
actionmailer (= 4.2.7.rc1)
54+
actionpack (= 4.2.7.rc1)
55+
actionview (= 4.2.7.rc1)
56+
activejob (= 4.2.7.rc1)
57+
activemodel (= 4.2.7.rc1)
58+
activerecord (= 4.2.7.rc1)
59+
activesupport (= 4.2.7.rc1)
6060
bundler (>= 1.3.0, < 2.0)
61-
railties (= 4.2.6)
61+
railties (= 4.2.7.rc1)
6262
sprockets-rails
63-
railties (4.2.6)
64-
actionpack (= 4.2.6)
65-
activesupport (= 4.2.6)
63+
railties (4.2.7.rc1)
64+
actionpack (= 4.2.7.rc1)
65+
activesupport (= 4.2.7.rc1)
6666
rake (>= 0.8.7)
6767
thor (>= 0.18.1, < 2.0)
6868

@@ -214,7 +214,7 @@ GEM
214214
thread
215215
sprockets (3.0.3)
216216
rack (~> 1.0)
217-
sprockets-rails (3.0.4)
217+
sprockets-rails (3.1.1)
218218
actionpack (>= 4.0)
219219
activesupport (>= 4.0)
220220
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
1+
4.2.7.rc1

actionmailer/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 4.2.7.rc1 (June 30, 2016) ##
2+
13
* Removes `-t` from default Sendmail arguments to match the underlying
24
`Mail::Sendmail` setting.
35

actionmailer/lib/action_mailer/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 6
11-
PRE = nil
10+
TINY = 7
11+
PRE = "rc1"
1212

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

actionpack/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.2.7.rc1 (June 30, 2016) ##
2+
3+
* No changes.
4+
5+
16
## Rails 4.2.6 (March 07, 2016) ##
27

38
* No changes.

actionpack/lib/action_pack/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 6
11-
PRE = nil
10+
TINY = 7
11+
PRE = "rc1"
1212

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

actionview/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.2.7.rc1 (June 30, 2016) ##
2+
3+
* No changes.
4+
5+
16
## Rails 4.2.6 (March 07, 2016) ##
27

38
* Fix stripping the digest from the automatically generated img tag alt

actionview/lib/action_view/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 6
11-
PRE = nil
10+
TINY = 7
11+
PRE = "rc1"
1212

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

activejob/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.2.7.rc1 (June 30, 2016) ##
2+
3+
* No changes.
4+
5+
16
## Rails 4.2.6 (March 07, 2016) ##
27

38
* No changes.

activejob/lib/active_job/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 6
11-
PRE = nil
10+
TINY = 7
11+
PRE = "rc1"
1212

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

0 commit comments

Comments
 (0)