Skip to content

Commit

Permalink
Master version is 3.2.0.beta
Browse files Browse the repository at this point in the history
  • Loading branch information
spastorino committed Jun 30, 2011
1 parent a2a7a19 commit 35cdd25
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion RAILS_VERSION
@@ -1 +1 @@
3.1.0.rc1
3.2.0.beta
4 changes: 2 additions & 2 deletions actionmailer/lib/action_mailer/version.rb
@@ -1,9 +1,9 @@
module ActionMailer
module VERSION #:nodoc:
MAJOR = 3
MINOR = 1
MINOR = 2
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
4 changes: 2 additions & 2 deletions actionpack/lib/action_pack/version.rb
@@ -1,9 +1,9 @@
module ActionPack
module VERSION #:nodoc:
MAJOR = 3
MINOR = 1
MINOR = 2
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
4 changes: 2 additions & 2 deletions activemodel/lib/active_model/version.rb
@@ -1,9 +1,9 @@
module ActiveModel
module VERSION #:nodoc:
MAJOR = 3
MINOR = 1
MINOR = 2
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
4 changes: 2 additions & 2 deletions activerecord/lib/active_record/version.rb
@@ -1,9 +1,9 @@
module ActiveRecord
module VERSION #:nodoc:
MAJOR = 3
MINOR = 1
MINOR = 2
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
4 changes: 2 additions & 2 deletions activeresource/lib/active_resource/version.rb
@@ -1,9 +1,9 @@
module ActiveResource
module VERSION #:nodoc:
MAJOR = 3
MINOR = 1
MINOR = 2
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
4 changes: 2 additions & 2 deletions activesupport/lib/active_support/version.rb
@@ -1,9 +1,9 @@
module ActiveSupport
module VERSION #:nodoc:
MAJOR = 3
MINOR = 1
MINOR = 2
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
4 changes: 2 additions & 2 deletions railties/lib/rails/version.rb
@@ -1,9 +1,9 @@
module Rails
module VERSION #:nodoc:
MAJOR = 3
MINOR = 1
MINOR = 2
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down
4 changes: 2 additions & 2 deletions version.rb
@@ -1,9 +1,9 @@
module Rails
module VERSION #:nodoc:
MAJOR = 3
MINOR = 1
MINOR = 2
TINY = 0
PRE = "rc1"
PRE = "beta"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down

0 comments on commit 35cdd25

Please sign in to comment.