aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2010-03-01 23:03:07 -0500
committerBryan Helmkamp <bryan@brynary.com>2010-03-02 00:32:48 -0500
commita4111bbca0884e4a748ab32ba7d7b550ec8d9186 (patch)
treedb21a4a5b70d89fe90723a6065f11fa08332dbc8 /activemodel
parentb1769fe0bd6ea3b7eb7147333754d4b712831b2c (diff)
downloadrails-a4111bbca0884e4a748ab32ba7d7b550ec8d9186.tar.gz
rails-a4111bbca0884e4a748ab32ba7d7b550ec8d9186.tar.bz2
rails-a4111bbca0884e4a748ab32ba7d7b550ec8d9186.zip
Update versions of all components to normalize them to new format
Diffstat (limited to 'activemodel')
-rw-r--r--activemodel/lib/active_model/version.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/version.rb b/activemodel/lib/active_model/version.rb
index d51423ae1b..85d0eed180 100644
--- a/activemodel/lib/active_model/version.rb
+++ b/activemodel/lib/active_model/version.rb
@@ -2,8 +2,9 @@ module ActiveModel
module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
- TINY = "0.beta1"
+ TINY = 0
+ BUILD = "beta1"
- STRING = [MAJOR, MINOR, TINY].join('.')
+ STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end
end