Skip to content

Commit fbdcf52

Browse files
committed
Preparing for 5.0.0.rc1 release
1 parent 809236b commit fbdcf52

File tree

22 files changed

+88
-44
lines changed

22 files changed

+88
-44
lines changed

Gemfile.lock

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -36,58 +36,58 @@ GIT
3636
PATH
3737
remote: .
3838
specs:
39-
actioncable (5.0.0.beta4)
40-
actionpack (= 5.0.0.beta4)
39+
actioncable (5.0.0.rc1)
40+
actionpack (= 5.0.0.rc1)
4141
nio4r (~> 1.2)
4242
websocket-driver (~> 0.6.1)
43-
actionmailer (5.0.0.beta4)
44-
actionpack (= 5.0.0.beta4)
45-
actionview (= 5.0.0.beta4)
46-
activejob (= 5.0.0.beta4)
43+
actionmailer (5.0.0.rc1)
44+
actionpack (= 5.0.0.rc1)
45+
actionview (= 5.0.0.rc1)
46+
activejob (= 5.0.0.rc1)
4747
mail (~> 2.5, >= 2.5.4)
4848
rails-dom-testing (~> 1.0, >= 1.0.5)
49-
actionpack (5.0.0.beta4)
50-
actionview (= 5.0.0.beta4)
51-
activesupport (= 5.0.0.beta4)
49+
actionpack (5.0.0.rc1)
50+
actionview (= 5.0.0.rc1)
51+
activesupport (= 5.0.0.rc1)
5252
rack (~> 2.x)
5353
rack-test (~> 0.6.3)
5454
rails-dom-testing (~> 1.0, >= 1.0.5)
5555
rails-html-sanitizer (~> 1.0, >= 1.0.2)
56-
actionview (5.0.0.beta4)
57-
activesupport (= 5.0.0.beta4)
56+
actionview (5.0.0.rc1)
57+
activesupport (= 5.0.0.rc1)
5858
builder (~> 3.1)
5959
erubis (~> 2.7.0)
6060
rails-dom-testing (~> 1.0, >= 1.0.5)
6161
rails-html-sanitizer (~> 1.0, >= 1.0.2)
62-
activejob (5.0.0.beta4)
63-
activesupport (= 5.0.0.beta4)
62+
activejob (5.0.0.rc1)
63+
activesupport (= 5.0.0.rc1)
6464
globalid (>= 0.3.6)
65-
activemodel (5.0.0.beta4)
66-
activesupport (= 5.0.0.beta4)
67-
activerecord (5.0.0.beta4)
68-
activemodel (= 5.0.0.beta4)
69-
activesupport (= 5.0.0.beta4)
65+
activemodel (5.0.0.rc1)
66+
activesupport (= 5.0.0.rc1)
67+
activerecord (5.0.0.rc1)
68+
activemodel (= 5.0.0.rc1)
69+
activesupport (= 5.0.0.rc1)
7070
arel (~> 7.0)
71-
activesupport (5.0.0.beta4)
71+
activesupport (5.0.0.rc1)
7272
concurrent-ruby (~> 1.0, >= 1.0.2)
7373
i18n (~> 0.7)
7474
minitest (~> 5.1)
7575
tzinfo (~> 1.1)
76-
rails (5.0.0.beta4)
77-
actioncable (= 5.0.0.beta4)
78-
actionmailer (= 5.0.0.beta4)
79-
actionpack (= 5.0.0.beta4)
80-
actionview (= 5.0.0.beta4)
81-
activejob (= 5.0.0.beta4)
82-
activemodel (= 5.0.0.beta4)
83-
activerecord (= 5.0.0.beta4)
84-
activesupport (= 5.0.0.beta4)
76+
rails (5.0.0.rc1)
77+
actioncable (= 5.0.0.rc1)
78+
actionmailer (= 5.0.0.rc1)
79+
actionpack (= 5.0.0.rc1)
80+
actionview (= 5.0.0.rc1)
81+
activejob (= 5.0.0.rc1)
82+
activemodel (= 5.0.0.rc1)
83+
activerecord (= 5.0.0.rc1)
84+
activesupport (= 5.0.0.rc1)
8585
bundler (>= 1.3.0, < 2.0)
86-
railties (= 5.0.0.beta4)
86+
railties (= 5.0.0.rc1)
8787
sprockets-rails (>= 2.0.0)
88-
railties (5.0.0.beta4)
89-
actionpack (= 5.0.0.beta4)
90-
activesupport (= 5.0.0.beta4)
88+
railties (5.0.0.rc1)
89+
actionpack (= 5.0.0.rc1)
90+
activesupport (= 5.0.0.rc1)
9191
method_source
9292
rake (>= 0.8.7)
9393
thor (>= 0.18.1, < 2.0)

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.0.beta4
1+
5.0.0.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.0.rc1 (May 06, 2016) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.0.0.beta4 (April 27, 2016) ##
27

38
* WebSocket protocol negotiation.

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

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

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.0.rc1 (May 06, 2016) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.0.0.beta4 (April 27, 2016) ##
27

38
* Disallow calling `#deliver_later` after making local modifications to

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 = 5
99
MINOR = 0
1010
TINY = 0
11-
PRE = "beta4"
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.0.rc1 (May 06, 2016) ##
2+
13
* Add `ActionController#helpers` to get access to the view context at the controller
24
level.
35

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 = 5
99
MINOR = 0
1010
TINY = 0
11-
PRE = "beta4"
11+
PRE = "rc1"
1212

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

actionview/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
## Rails 5.0.0.rc1 (May 06, 2016) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.0.0.beta4 (April 27, 2016) ##
27

3-
* `date_select` helper `:with_css_classes` option now accepts a hash of strings
8+
* `date_select` helper `:with_css_classes` option now accepts a hash of strings
49
for `:year`, `:month`, `:day`, `:hour`, `:minute`, `:second` that will extend
510
the select type with the given css class value.
611

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 = 5
99
MINOR = 0
1010
TINY = 0
11-
PRE = "beta4"
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 5.0.0.rc1 (May 06, 2016) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.0.0.beta4 (April 27, 2016) ##
27

38
* Enable class reloading prior to job dispatch, and ensure Active Record

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 = 5
99
MINOR = 0
1010
TINY = 0
11-
PRE = "beta4"
11+
PRE = "rc1"
1212

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

activemodel/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.0.0.rc1 (May 06, 2016) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.0.0.beta4 (April 27, 2016) ##
27

38
* Allow passing record being validated to the message proc to generate

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 = 5
99
MINOR = 0
1010
TINY = 0
11-
PRE = "beta4"
11+
PRE = "rc1"
1212

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

activerecord/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.0.0.rc1 (May 06, 2016) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.0.0.beta4 (April 27, 2016) ##
27

38
* PostgreSQL: Support Expression Indexes and Operator Classes.

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 = 5
99
MINOR = 0
1010
TINY = 0
11-
PRE = "beta4"
11+
PRE = "rc1"
1212

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

activesupport/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 5.0.0.rc1 (May 06, 2016) ##
2+
13
* `ActiveSupport::Duration` supports weeks and hours.
24

35
[1.hour.inspect, 1.hour.value, 1.hour.parts]

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 = 5
99
MINOR = 0
1010
TINY = 0
11-
PRE = "beta4"
11+
PRE = "rc1"
1212

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

guides/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.0.0.rc1 (May 06, 2016) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.0.0.beta4 (April 27, 2016) ##
27

38
* Update example of passing a proc to `:message` option for validating records.

railties/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 5.0.0.rc1 (May 06, 2016) ##
2+
3+
* No changes.
4+
5+
16
## Rails 5.0.0.beta4 (April 27, 2016) ##
27

38
* Add `config/initializers/to_time_preserves_timezone.rb`, which tells

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 = 5
99
MINOR = 0
1010
TINY = 0
11-
PRE = "beta4"
11+
PRE = "rc1"
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 = 5
99
MINOR = 0
1010
TINY = 0
11-
PRE = "beta4"
11+
PRE = "rc1"
1212

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

0 commit comments

Comments
 (0)