Skip to content

Commit

Permalink
update version to 4.2.0.alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
senny committed Feb 23, 2014
1 parent 40a9d89 commit c554d17
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion RAILS_VERSION
@@ -1 +1 @@
4.1.0.beta2
4.2.0.alpha
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/version.rb
@@ -1,7 +1,7 @@
module ActionMailer
# Returns the version of the currently loaded ActionMailer as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta2"
Gem::Version.new "4.2.0.alpha"
end

module VERSION #:nodoc:
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/version.rb
@@ -1,7 +1,7 @@
module ActionPack
# Returns the version of the currently loaded ActionPack as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta2"
Gem::Version.new "4.2.0.alpha"
end

module VERSION #:nodoc:
Expand Down
2 changes: 1 addition & 1 deletion actionview/lib/action_view/version.rb
@@ -1,7 +1,7 @@
module ActionView
# Returns the version of the currently loaded ActionView as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta2"
Gem::Version.new "4.2.0.alpha"
end

module VERSION #:nodoc:
Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/version.rb
@@ -1,7 +1,7 @@
module ActiveModel
# Returns the version of the currently loaded ActiveModel as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta2"
Gem::Version.new "4.2.0.alpha"
end

module VERSION #:nodoc:
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/version.rb
@@ -1,7 +1,7 @@
module ActiveRecord
# Returns the version of the currently loaded ActiveRecord as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta2"
Gem::Version.new "4.2.0.alpha"
end

module VERSION #:nodoc:
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/version.rb
@@ -1,7 +1,7 @@
module ActiveSupport
# Returns the version of the currently loaded ActiveSupport as a Gem::Version
def self.version
Gem::Version.new "4.1.0.beta2"
Gem::Version.new "4.2.0.alpha"
end

module VERSION #:nodoc:
Expand Down
4 changes: 2 additions & 2 deletions railties/lib/rails/version.rb
@@ -1,9 +1,9 @@
module Rails
module VERSION
MAJOR = 4
MINOR = 1
MINOR = 2
TINY = 0
PRE = "beta2"
PRE = "alpha"

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
MAJOR = 4
MINOR = 1
MINOR = 2
TINY = 0
PRE = "beta2"
PRE = "alpha"

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

0 comments on commit c554d17

Please sign in to comment.