Skip to content

Commit

Permalink
Preparing for 5.0.1.rc2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewd committed Dec 9, 2016
1 parent c507b75 commit 0ef292c
Show file tree
Hide file tree
Showing 23 changed files with 85 additions and 44 deletions.
64 changes: 32 additions & 32 deletions Gemfile.lock
Expand Up @@ -24,58 +24,58 @@ GIT
PATH
remote: .
specs:
actioncable (5.0.1.rc1)
actionpack (= 5.0.1.rc1)
actioncable (5.0.1.rc2)
actionpack (= 5.0.1.rc2)
nio4r (~> 1.2)
websocket-driver (~> 0.6.1)
actionmailer (5.0.1.rc1)
actionpack (= 5.0.1.rc1)
actionview (= 5.0.1.rc1)
activejob (= 5.0.1.rc1)
actionmailer (5.0.1.rc2)
actionpack (= 5.0.1.rc2)
actionview (= 5.0.1.rc2)
activejob (= 5.0.1.rc2)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
actionpack (5.0.1.rc1)
actionview (= 5.0.1.rc1)
activesupport (= 5.0.1.rc1)
actionpack (5.0.1.rc2)
actionview (= 5.0.1.rc2)
activesupport (= 5.0.1.rc2)
rack (~> 2.0)
rack-test (~> 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (5.0.1.rc1)
activesupport (= 5.0.1.rc1)
actionview (5.0.1.rc2)
activesupport (= 5.0.1.rc2)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
activejob (5.0.1.rc1)
activesupport (= 5.0.1.rc1)
activejob (5.0.1.rc2)
activesupport (= 5.0.1.rc2)
globalid (>= 0.3.6)
activemodel (5.0.1.rc1)
activesupport (= 5.0.1.rc1)
activerecord (5.0.1.rc1)
activemodel (= 5.0.1.rc1)
activesupport (= 5.0.1.rc1)
activemodel (5.0.1.rc2)
activesupport (= 5.0.1.rc2)
activerecord (5.0.1.rc2)
activemodel (= 5.0.1.rc2)
activesupport (= 5.0.1.rc2)
arel (~> 7.0)
activesupport (5.0.1.rc1)
activesupport (5.0.1.rc2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
minitest (~> 5.1)
tzinfo (~> 1.1)
rails (5.0.1.rc1)
actioncable (= 5.0.1.rc1)
actionmailer (= 5.0.1.rc1)
actionpack (= 5.0.1.rc1)
actionview (= 5.0.1.rc1)
activejob (= 5.0.1.rc1)
activemodel (= 5.0.1.rc1)
activerecord (= 5.0.1.rc1)
activesupport (= 5.0.1.rc1)
rails (5.0.1.rc2)
actioncable (= 5.0.1.rc2)
actionmailer (= 5.0.1.rc2)
actionpack (= 5.0.1.rc2)
actionview (= 5.0.1.rc2)
activejob (= 5.0.1.rc2)
activemodel (= 5.0.1.rc2)
activerecord (= 5.0.1.rc2)
activesupport (= 5.0.1.rc2)
bundler (>= 1.3.0, < 2.0)
railties (= 5.0.1.rc1)
railties (= 5.0.1.rc2)
sprockets-rails (>= 2.0.0)
railties (5.0.1.rc1)
actionpack (= 5.0.1.rc1)
activesupport (= 5.0.1.rc1)
railties (5.0.1.rc2)
actionpack (= 5.0.1.rc2)
activesupport (= 5.0.1.rc2)
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.1.rc1
5.0.1.rc2
5 changes: 5 additions & 0 deletions actioncable/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 5.0.1.rc2 (December 10, 2016) ##

* No changes.


## Rails 5.0.1.rc1 (December 01, 2016) ##

* Permit same-origin connections by default.
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 = 1
PRE = "rc1"
PRE = "rc2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion actioncable/package.json
@@ -1,6 +1,6 @@
{
"name": "actioncable",
"version": "5.0.1-rc1",
"version": "5.0.1-rc2",
"description": "WebSocket framework for Ruby on Rails.",
"main": "lib/assets/compiled/action_cable.js",
"files": [
Expand Down
5 changes: 5 additions & 0 deletions actionmailer/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 5.0.1.rc2 (December 10, 2016) ##

* No changes.


## Rails 5.0.1.rc1 (December 01, 2016) ##

* No changes.
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 = 1
PRE = "rc1"
PRE = "rc2"

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.1.rc2 (December 10, 2016) ##

* Move `cookies`, `flash`, and `session` methods back to
`ActionDispatch::Integration::Session`.

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 = 1
PRE = "rc1"
PRE = "rc2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 2 additions & 0 deletions actionview/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 5.0.1.rc2 (December 10, 2016) ##

* Restore support for locals named `_`, `arg`, `args`, and `block`.

Fixes #27302.
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 = 1
PRE = "rc1"
PRE = "rc2"

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.1.rc2 (December 10, 2016) ##

* No changes.


## Rails 5.0.1.rc1 (December 01, 2016) ##

* Added instance variable `@queue` to JobWrapper.
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 = 1
PRE = "rc1"
PRE = "rc2"

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.1.rc2 (December 10, 2016) ##

* No changes.


## Rails 5.0.1.rc1 (December 01, 2016) ##

* Fix `Type::Date#serialize` to cast a value to a date object properly.
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 = 1
PRE = "rc1"
PRE = "rc2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 2 additions & 0 deletions activerecord/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 5.0.1.rc2 (December 10, 2016) ##

* Correct resolution of associated class in `has_many :through`
associations' `*_ids` setters.

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 = 1
PRE = "rc1"
PRE = "rc2"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions activesupport/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 5.0.1.rc2 (December 10, 2016) ##

* No changes.


## Rails 5.0.1.rc1 (December 01, 2016) ##

* Ensure duration parsing is consistent across DST changes
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 = 1
PRE = "rc1"
PRE = "rc2"

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.1.rc2 (December 10, 2016) ##

* No changes.


## Rails 5.0.1.rc1 (December 01, 2016) ##

* No changes.
Expand Down
5 changes: 5 additions & 0 deletions railties/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 5.0.1.rc2 (December 10, 2016) ##

* No changes.


## Rails 5.0.1.rc1 (December 01, 2016) ##

* Add `:skip_sprockets` to `Rails::PluginBuilder::PASSTHROUGH_OPTIONS`
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 = 1
PRE = "rc1"
PRE = "rc2"

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 = 1
PRE = "rc1"
PRE = "rc2"

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

0 comments on commit 0ef292c

Please sign in to comment.