aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/gem_version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/gem_version.rb')
-rw-r--r--activerecord/lib/active_record/gem_version.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/gem_version.rb b/activerecord/lib/active_record/gem_version.rb
index 174f716152..72035a986b 100644
--- a/activerecord/lib/active_record/gem_version.rb
+++ b/activerecord/lib/active_record/gem_version.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module ActiveRecord
# Returns the version of the currently loaded Active Record as a <tt>Gem::Version</tt>
def self.gem_version
@@ -5,10 +7,10 @@ module ActiveRecord
end
module VERSION
- MAJOR = 5
- MINOR = 1
+ MAJOR = 6
+ MINOR = 0
TINY = 0
- PRE = "beta1"
+ PRE = "alpha"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end