aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2017-02-23 14:53:12 -0500
committerRafael Mendonça França <rafaelmfranca@gmail.com>2017-02-23 14:53:21 -0500
commitf4acdd83ff76e2338895073ed914c525e7bb33b4 (patch)
tree1c890e92bf8e486debef5611a2ba404dd3b5d0ad /activesupport
parent7ffd4c849dcfa4691477fe9dc4dbd2df6c9c6b7b (diff)
downloadrails-f4acdd83ff76e2338895073ed914c525e7bb33b4.tar.gz
rails-f4acdd83ff76e2338895073ed914c525e7bb33b4.tar.bz2
rails-f4acdd83ff76e2338895073ed914c525e7bb33b4.zip
Preparing for 5.1.0.beta1 release
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 7962427032..0f43b1256f 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,5 @@
+## Rails 5.1.0.beta1 (February 23, 2017) ##
+
* Cache `ActiveSupport::TimeWithZone#to_datetime` before freezing.
*Adam Rice*
diff --git a/activesupport/lib/active_support/gem_version.rb b/activesupport/lib/active_support/gem_version.rb
index 74f2d8dd4b..a641b96c57 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 = 1
TINY = 0
- PRE = "alpha"
+ PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end