diff options
author | eileencodes <eileencodes@gmail.com> | 2016-04-27 15:47:22 -0500 |
---|---|---|
committer | eileencodes <eileencodes@gmail.com> | 2016-04-27 15:48:47 -0500 |
commit | f7a986012a6099445e20b6414d253ee0fc039118 (patch) | |
tree | 7097a0c9084254d42ae4f4ea57c0e6db849f6ad8 /actionview | |
parent | ba907d6caa92880bd3d7d5635823361f6fca829d (diff) | |
download | rails-f7a986012a6099445e20b6414d253ee0fc039118.tar.gz rails-f7a986012a6099445e20b6414d253ee0fc039118.tar.bz2 rails-f7a986012a6099445e20b6414d253ee0fc039118.zip |
Prep Rails 5 beta 4
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/CHANGELOG.md | 2 | ||||
-rw-r--r-- | actionview/lib/action_view/gem_version.rb | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index 6fb41e9d4c..330544ba7d 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -1,3 +1,5 @@ +## Rails 5.0.0.beta4 (April 27, 2016) ## + * `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. diff --git a/actionview/lib/action_view/gem_version.rb b/actionview/lib/action_view/gem_version.rb index efb565bf59..7f86994fd4 100644 --- a/actionview/lib/action_view/gem_version.rb +++ b/actionview/lib/action_view/gem_version.rb @@ -8,7 +8,7 @@ module ActionView MAJOR = 5 MINOR = 0 TINY = 0 - PRE = "beta3" + PRE = "beta4" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end |