diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-05-10 01:07:09 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-05-10 03:46:56 -0300 |
commit | 8ecc5ab1d88532a239f17c7520ed922c7579b01c (patch) | |
tree | 039f74b3ff88363fe3f6173693464947a22a58a6 /activemodel/lib/active_model | |
parent | 943b96c738cd37023c986d89ad5b8af8254001b3 (diff) | |
download | rails-8ecc5ab1d88532a239f17c7520ed922c7579b01c.tar.gz rails-8ecc5ab1d88532a239f17c7520ed922c7579b01c.tar.bz2 rails-8ecc5ab1d88532a239f17c7520ed922c7579b01c.zip |
Start Rails 5.1 development :tada:
Diffstat (limited to 'activemodel/lib/active_model')
-rw-r--r-- | activemodel/lib/active_model/gem_version.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/gem_version.rb b/activemodel/lib/active_model/gem_version.rb index d1a9a3bec9..4a8ee915cf 100644 --- a/activemodel/lib/active_model/gem_version.rb +++ b/activemodel/lib/active_model/gem_version.rb @@ -6,9 +6,9 @@ module ActiveModel module VERSION MAJOR = 5 - MINOR = 0 + MINOR = 1 TINY = 0 - PRE = "rc1" + PRE = "alpha" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end |