aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authoreileencodes <eileencodes@gmail.com>2019-03-11 11:58:15 -0400
committereileencodes <eileencodes@gmail.com>2019-03-11 11:58:15 -0400
commit7c87fd5635fd830905e17d3cbf1eb2a2215acedf (patch)
tree751a2f2af53bb9176c3b4d8ae418eb745aae552c /activesupport
parent4c743587ad6a31908503ab317e37d70361d49e66 (diff)
downloadrails-7c87fd5635fd830905e17d3cbf1eb2a2215acedf.tar.gz
rails-7c87fd5635fd830905e17d3cbf1eb2a2215acedf.tar.bz2
rails-7c87fd5635fd830905e17d3cbf1eb2a2215acedf.zip
Prep release
* Update RAILS_VERSION * Bundle * rake update_versions * rake changelog:header
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG.md5
-rw-r--r--activesupport/lib/active_support/gem_version.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 3f0c6fbd4e..1566538a53 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,8 @@
+## Rails 6.0.0.beta3 (March 11, 2019) ##
+
+* No changes.
+
+
## Rails 6.0.0.beta2 (February 25, 2019) ##
* New autoloading based on [Zeitwerk](https://github.com/fxn/zeitwerk).
diff --git a/activesupport/lib/active_support/gem_version.rb b/activesupport/lib/active_support/gem_version.rb
index 009bb895a6..cf17922d7d 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 = "beta2"
+ PRE = "beta3"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end