Skip to content

Commit 2c85852

Browse files
committed
Preparing for 5.0.2.rc1 release
1 parent 696f176 commit 2c85852

File tree

23 files changed

+92
-57
lines changed

23 files changed

+92
-57
lines changed

Gemfile.lock

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -17,58 +17,58 @@ GIT
1717
PATH
1818
remote: .
1919
specs:
20-
actioncable (5.0.1)
21-
actionpack (= 5.0.1)
20+
actioncable (5.0.2.rc1)
21+
actionpack (= 5.0.2.rc1)
2222
nio4r (>= 1.2, < 3.0)
2323
websocket-driver (~> 0.6.1)
24-
actionmailer (5.0.1)
25-
actionpack (= 5.0.1)
26-
actionview (= 5.0.1)
27-
activejob (= 5.0.1)
24+
actionmailer (5.0.2.rc1)
25+
actionpack (= 5.0.2.rc1)
26+
actionview (= 5.0.2.rc1)
27+
activejob (= 5.0.2.rc1)
2828
mail (~> 2.5, >= 2.5.4)
2929
rails-dom-testing (~> 2.0)
30-
actionpack (5.0.1)
31-
actionview (= 5.0.1)
32-
activesupport (= 5.0.1)
30+
actionpack (5.0.2.rc1)
31+
actionview (= 5.0.2.rc1)
32+
activesupport (= 5.0.2.rc1)
3333
rack (~> 2.0)
3434
rack-test (~> 0.6.3)
3535
rails-dom-testing (~> 2.0)
3636
rails-html-sanitizer (~> 1.0, >= 1.0.2)
37-
actionview (5.0.1)
38-
activesupport (= 5.0.1)
37+
actionview (5.0.2.rc1)
38+
activesupport (= 5.0.2.rc1)
3939
builder (~> 3.1)
4040
erubis (~> 2.7.0)
4141
rails-dom-testing (~> 2.0)
4242
rails-html-sanitizer (~> 1.0, >= 1.0.3)
43-
activejob (5.0.1)
44-
activesupport (= 5.0.1)
43+
activejob (5.0.2.rc1)
44+
activesupport (= 5.0.2.rc1)
4545
globalid (>= 0.3.6)
46-
activemodel (5.0.1)
47-
activesupport (= 5.0.1)
48-
activerecord (5.0.1)
49-
activemodel (= 5.0.1)
50-
activesupport (= 5.0.1)
46+
activemodel (5.0.2.rc1)
47+
activesupport (= 5.0.2.rc1)
48+
activerecord (5.0.2.rc1)
49+
activemodel (= 5.0.2.rc1)
50+
activesupport (= 5.0.2.rc1)
5151
arel (~> 7.0)
52-
activesupport (5.0.1)
52+
activesupport (5.0.2.rc1)
5353
concurrent-ruby (~> 1.0, >= 1.0.2)
5454
i18n (~> 0.7)
5555
minitest (~> 5.1)
5656
tzinfo (~> 1.1)
57-
rails (5.0.1)
58-
actioncable (= 5.0.1)
59-
actionmailer (= 5.0.1)
60-
actionpack (= 5.0.1)
61-
actionview (= 5.0.1)
62-
activejob (= 5.0.1)
63-
activemodel (= 5.0.1)
64-
activerecord (= 5.0.1)
65-
activesupport (= 5.0.1)
57+
rails (5.0.2.rc1)
58+
actioncable (= 5.0.2.rc1)
59+
actionmailer (= 5.0.2.rc1)
60+
actionpack (= 5.0.2.rc1)
61+
actionview (= 5.0.2.rc1)
62+
activejob (= 5.0.2.rc1)
63+
activemodel (= 5.0.2.rc1)
64+
activerecord (= 5.0.2.rc1)
65+
activesupport (= 5.0.2.rc1)
6666
bundler (>= 1.3.0, < 2.0)
67-
railties (= 5.0.1)
67+
railties (= 5.0.2.rc1)
6868
sprockets-rails (>= 2.0.0)
69-
railties (5.0.1)
70-
actionpack (= 5.0.1)
71-
activesupport (= 5.0.1)
69+
railties (5.0.2.rc1)
70+
actionpack (= 5.0.2.rc1)
71+
activesupport (= 5.0.2.rc1)
7272
method_source
7373
rake (>= 0.8.7)
7474
thor (>= 0.18.1, < 2.0)
@@ -160,7 +160,7 @@ GEM
160160
activesupport (>= 4.1.0)
161161
hiredis (0.6.1)
162162
http_parser.rb (0.6.0)
163-
i18n (0.8.0)
163+
i18n (0.8.1)
164164
jquery-rails (4.2.1)
165165
rails-dom-testing (>= 1, < 3)
166166
railties (>= 4.2.0)
@@ -191,7 +191,7 @@ GEM
191191
mysql2 (0.4.5)
192192
mysql2 (0.4.5-x64-mingw32)
193193
mysql2 (0.4.5-x86-mingw32)
194-
nio4r (1.2.1)
194+
nio4r (2.0.0)
195195
nokogiri (1.7.0)
196196
mini_portile2 (~> 2.1.0)
197197
nokogiri (1.7.0-x64-mingw32)
@@ -370,4 +370,4 @@ DEPENDENCIES
370370
wdm (>= 0.1.0)
371371

372372
BUNDLED WITH
373-
1.14.3
373+
1.14.4

RAILS_VERSION

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

actioncable/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.0.2.rc1 (February 24, 2017) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.0.1 (December 21, 2016) ##
27

38
* No changes.

actioncable/lib/action_cable/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 = 5
99
MINOR = 0
10-
TINY = 1
11-
PRE = nil
10+
TINY = 2
11+
PRE = "rc1"
1212

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

actioncable/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "actioncable",
3-
"version": "5.0.1",
3+
"version": "5.0.2-rc1",
44
"description": "WebSocket framework for Ruby on Rails.",
55
"main": "lib/assets/compiled/action_cable.js",
66
"files": [

actionmailer/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.0.2.rc1 (February 24, 2017) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.0.1 (December 21, 2016) ##
27

38
* No changes.

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 = 5
99
MINOR = 0
10-
TINY = 1
11-
PRE = nil
10+
TINY = 2
11+
PRE = "rc1"
1212

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

actionpack/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 5.0.2.rc1 (February 24, 2017) ##
2+
13
* Make `with_routing` test helper work when testing controllers inheriting from `ActionController::API`.
24

35
*Julia López*

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 = 5
99
MINOR = 0
10-
TINY = 1
11-
PRE = nil
10+
TINY = 2
11+
PRE = "rc1"
1212

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

actionview/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 5.0.2.rc1 (February 24, 2017) ##
2+
13
* Allow render locals to be assigned to instance variables in a view.
24

35
Fixes #27480.

0 commit comments

Comments
 (0)