aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2019-02-25 17:45:04 -0500
committerRafael Mendonça França <rafaelmfranca@gmail.com>2019-02-25 17:45:04 -0500
commit5e6e505083c2b0caf85b2f86c6be3ff3d8750857 (patch)
treeb93de0c9d6fffaa93b01656b4552fe9cab44c30c /activesupport
parentdcb13470991539ab581e02670738900c39976ff4 (diff)
downloadrails-5e6e505083c2b0caf85b2f86c6be3ff3d8750857.tar.gz
rails-5e6e505083c2b0caf85b2f86c6be3ff3d8750857.tar.bz2
rails-5e6e505083c2b0caf85b2f86c6be3ff3d8750857.zip
Preparing for 6.0.0.beta2 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 c46b56833d..3f0c6fbd4e 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,5 @@
+## Rails 6.0.0.beta2 (February 25, 2019) ##
+
* New autoloading based on [Zeitwerk](https://github.com/fxn/zeitwerk).
*Xavier Noria*
diff --git a/activesupport/lib/active_support/gem_version.rb b/activesupport/lib/active_support/gem_version.rb
index 8bf016e88c..009bb895a6 100644
--- a/activesupport/lib/active_support/gem_version.rb
+++ b/activesupport/lib/active_support/gem_version.rb
@@ -10,7 +10,7 @@ module ActiveSupport
MAJOR = 6
MINOR = 0
TINY = 0
- PRE = "beta1"
+ PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end