aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2017-11-27 13:01:15 -0500
committerRafael Mendonça França <rafaelmfranca@gmail.com>2017-11-27 14:50:03 -0500
commitcceeeb6e57f1cf8b24d507e2da9ed85d374c8bc5 (patch)
tree6c3b79fd535709776b6ad55755aa6ae7b1c4342a /activesupport
parent5fb36d03dba0eb5309788b53372ebe7dd980639d (diff)
downloadrails-cceeeb6e57f1cf8b24d507e2da9ed85d374c8bc5.tar.gz
rails-cceeeb6e57f1cf8b24d507e2da9ed85d374c8bc5.tar.bz2
rails-cceeeb6e57f1cf8b24d507e2da9ed85d374c8bc5.zip
Preparing for 5.2.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 b6eb64c1c9..edf0cdacc1 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,5 @@
+## Rails 5.2.0.beta1 (November 27, 2017) ##
+
* Changed default behaviour of `ActiveSupport::SecurityUtils.secure_compare`,
to make it not leak length information even for variable length string.
diff --git a/activesupport/lib/active_support/gem_version.rb b/activesupport/lib/active_support/gem_version.rb
index 2a7ef2f820..e9cdf17361 100644
--- a/activesupport/lib/active_support/gem_version.rb
+++ b/activesupport/lib/active_support/gem_version.rb
@@ -10,7 +10,7 @@ module ActiveSupport
MAJOR = 5
MINOR = 2
TINY = 0
- PRE = "alpha"
+ PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end