Skip to content

Commit

Permalink
Merge commit 'fbdcf5221ad7ea3d40ad09651962fc85d101dd67'
Browse files Browse the repository at this point in the history
Preparing for 5.0.0.rc1 release
  • Loading branch information
matthewd committed May 7, 2016
2 parents 90ecb2a + fbdcf52 commit 33f8dac
Show file tree
Hide file tree
Showing 22 changed files with 88 additions and 44 deletions.
64 changes: 32 additions & 32 deletions Gemfile.lock
Expand Up @@ -36,58 +36,58 @@ GIT
PATH
remote: .
specs:
actioncable (5.0.0.beta4)
actionpack (= 5.0.0.beta4)
actioncable (5.0.0.rc1)
actionpack (= 5.0.0.rc1)
nio4r (~> 1.2)
websocket-driver (~> 0.6.1)
actionmailer (5.0.0.beta4)
actionpack (= 5.0.0.beta4)
actionview (= 5.0.0.beta4)
activejob (= 5.0.0.beta4)
actionmailer (5.0.0.rc1)
actionpack (= 5.0.0.rc1)
actionview (= 5.0.0.rc1)
activejob (= 5.0.0.rc1)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (5.0.0.beta4)
actionview (= 5.0.0.beta4)
activesupport (= 5.0.0.beta4)
actionpack (5.0.0.rc1)
actionview (= 5.0.0.rc1)
activesupport (= 5.0.0.rc1)
rack (~> 2.x)
rack-test (~> 0.6.3)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.0.0.beta4)
activesupport (= 5.0.0.beta4)
actionview (5.0.0.rc1)
activesupport (= 5.0.0.rc1)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
activejob (5.0.0.beta4)
activesupport (= 5.0.0.beta4)
activejob (5.0.0.rc1)
activesupport (= 5.0.0.rc1)
globalid (>= 0.3.6)
activemodel (5.0.0.beta4)
activesupport (= 5.0.0.beta4)
activerecord (5.0.0.beta4)
activemodel (= 5.0.0.beta4)
activesupport (= 5.0.0.beta4)
activemodel (5.0.0.rc1)
activesupport (= 5.0.0.rc1)
activerecord (5.0.0.rc1)
activemodel (= 5.0.0.rc1)
activesupport (= 5.0.0.rc1)
arel (~> 7.0)
activesupport (5.0.0.beta4)
activesupport (5.0.0.rc1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
rails (5.0.0.beta4)
actioncable (= 5.0.0.beta4)
actionmailer (= 5.0.0.beta4)
actionpack (= 5.0.0.beta4)
actionview (= 5.0.0.beta4)
activejob (= 5.0.0.beta4)
activemodel (= 5.0.0.beta4)
activerecord (= 5.0.0.beta4)
activesupport (= 5.0.0.beta4)
rails (5.0.0.rc1)
actioncable (= 5.0.0.rc1)
actionmailer (= 5.0.0.rc1)
actionpack (= 5.0.0.rc1)
actionview (= 5.0.0.rc1)
activejob (= 5.0.0.rc1)
activemodel (= 5.0.0.rc1)
activerecord (= 5.0.0.rc1)
activesupport (= 5.0.0.rc1)
bundler (>= 1.3.0, < 2.0)
railties (= 5.0.0.beta4)
railties (= 5.0.0.rc1)
sprockets-rails (>= 2.0.0)
railties (5.0.0.beta4)
actionpack (= 5.0.0.beta4)
activesupport (= 5.0.0.beta4)
railties (5.0.0.rc1)
actionpack (= 5.0.0.rc1)
activesupport (= 5.0.0.rc1)
method_source
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
Expand Down
2 changes: 1 addition & 1 deletion RAILS_VERSION
@@ -1 +1 @@
5.0.0.beta4
5.0.0.rc1
5 changes: 5 additions & 0 deletions actioncable/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 5.0.0.rc1 (May 06, 2016) ##

* No changes.


## Rails 5.0.0.beta4 (April 27, 2016) ##

* WebSocket protocol negotiation.
Expand Down
2 changes: 1 addition & 1 deletion actioncable/lib/action_cable/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions actionmailer/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 5.0.0.rc1 (May 06, 2016) ##

* No changes.


## Rails 5.0.0.beta4 (April 27, 2016) ##

* Disallow calling `#deliver_later` after making local modifications to
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 2 additions & 0 deletions actionpack/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 5.0.0.rc1 (May 06, 2016) ##

* Add `ActionController#helpers` to get access to the view context at the controller
level.

Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
7 changes: 6 additions & 1 deletion actionview/CHANGELOG.md
@@ -1,6 +1,11 @@
## Rails 5.0.0.rc1 (May 06, 2016) ##

* No changes.


## Rails 5.0.0.beta4 (April 27, 2016) ##

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

Expand Down
2 changes: 1 addition & 1 deletion actionview/lib/action_view/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions activejob/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 5.0.0.rc1 (May 06, 2016) ##

* No changes.


## Rails 5.0.0.beta4 (April 27, 2016) ##

* Enable class reloading prior to job dispatch, and ensure Active Record
Expand Down
2 changes: 1 addition & 1 deletion activejob/lib/active_job/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions activemodel/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 5.0.0.rc1 (May 06, 2016) ##

* No changes.


## Rails 5.0.0.beta4 (April 27, 2016) ##

* Allow passing record being validated to the message proc to generate
Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions activerecord/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 5.0.0.rc1 (May 06, 2016) ##

* No changes.


## Rails 5.0.0.beta4 (April 27, 2016) ##

* PostgreSQL: Support Expression Indexes and Operator Classes.
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 2 additions & 0 deletions activesupport/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 5.0.0.rc1 (May 06, 2016) ##

* `ActiveSupport::Duration` supports weeks and hours.

[1.hour.inspect, 1.hour.value, 1.hour.parts]
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions guides/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 5.0.0.rc1 (May 06, 2016) ##

* No changes.


## Rails 5.0.0.beta4 (April 27, 2016) ##

* Update example of passing a proc to `:message` option for validating records.
Expand Down
5 changes: 5 additions & 0 deletions railties/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 5.0.0.rc1 (May 06, 2016) ##

* No changes.


## Rails 5.0.0.beta4 (April 27, 2016) ##

* Add `config/initializers/to_time_preserves_timezone.rb`, which tells
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/gem_version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion version.rb
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 5
MINOR = 0
TINY = 0
PRE = "beta4"
PRE = "rc1"

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

0 comments on commit 33f8dac

Please sign in to comment.