aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authoreileencodes <eileencodes@gmail.com>2016-04-27 15:47:22 -0500
committereileencodes <eileencodes@gmail.com>2016-04-27 15:48:47 -0500
commitf7a986012a6099445e20b6414d253ee0fc039118 (patch)
tree7097a0c9084254d42ae4f4ea57c0e6db849f6ad8 /activesupport
parentba907d6caa92880bd3d7d5635823361f6fca829d (diff)
downloadrails-f7a986012a6099445e20b6414d253ee0fc039118.tar.gz
rails-f7a986012a6099445e20b6414d253ee0fc039118.tar.bz2
rails-f7a986012a6099445e20b6414d253ee0fc039118.zip
Prep Rails 5 beta 4
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG.md2
-rw-r--r--activesupport/lib/active_support/gem_version.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index f7b4aad492..d1b3147cef 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,5 @@
+## Rails 5.0.0.beta4 (April 27, 2016) ##
+
* Time zones: Ensure that the UTC offset reflects DST changes that occurred
since the app started. Removes UTC offset caching, reducing performance,
but this is still relatively quick and isn't in any hot paths.
diff --git a/activesupport/lib/active_support/gem_version.rb b/activesupport/lib/active_support/gem_version.rb
index 4166ffc2fb..4048133fb4 100644
--- a/activesupport/lib/active_support/gem_version.rb
+++ b/activesupport/lib/active_support/gem_version.rb
@@ -8,7 +8,7 @@ module ActiveSupport
MAJOR = 5
MINOR = 0
TINY = 0
- PRE = "beta3"
+ PRE = "beta4"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end