diff options
author | eileencodes <eileencodes@gmail.com> | 2015-12-18 12:07:10 -0500 |
---|---|---|
committer | eileencodes <eileencodes@gmail.com> | 2015-12-18 12:14:09 -0500 |
commit | 7eae0bb88e5259939f35023b11773f947b775d43 (patch) | |
tree | c952d2eab67c62c370b1111d4958e0831ae3e29e /activesupport | |
parent | 7c4080aac42ffc109693dd20672ab3bf09a9db9b (diff) | |
download | rails-7eae0bb88e5259939f35023b11773f947b775d43.tar.gz rails-7eae0bb88e5259939f35023b11773f947b775d43.tar.bz2 rails-7eae0bb88e5259939f35023b11773f947b775d43.zip |
Change `alpha` to `beta1` to prep for release of Rails 5
:tada: :beers:
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/gem_version.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/gem_version.rb b/activesupport/lib/active_support/gem_version.rb index ece68bbcb6..7790a9b2c0 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 = "alpha" + PRE = "beta1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end |