Skip to content

Commit

Permalink
Preparing for 4.0.13.rc1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Jan 2, 2015
1 parent 06591be commit e63670a
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion RAILS_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.12
4.0.13.rc1
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/version.rb
Original file line number Diff line number Diff line change
@@ -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.0.12"
Gem::Version.new "4.0.13.rc1"
end

module VERSION #:nodoc:
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/version.rb
Original file line number Diff line number Diff line change
@@ -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.0.12"
Gem::Version.new "4.0.13.rc1"
end

module VERSION #:nodoc:
Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/version.rb
Original file line number Diff line number Diff line change
@@ -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.0.12"
Gem::Version.new "4.0.13.rc1"
end

module VERSION #:nodoc:
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/version.rb
Original file line number Diff line number Diff line change
@@ -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.0.12"
Gem::Version.new "4.0.13.rc1"
end

module VERSION #:nodoc:
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/version.rb
Original file line number Diff line number Diff line change
@@ -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.0.12"
Gem::Version.new "4.0.13.rc1"
end

module VERSION #:nodoc:
Expand Down
4 changes: 2 additions & 2 deletions railties/lib/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ module Rails
module VERSION
MAJOR = 4
MINOR = 0
TINY = 12
PRE = nil
TINY = 13
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
4 changes: 2 additions & 2 deletions version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ module Rails
module VERSION
MAJOR = 4
MINOR = 0
TINY = 12
PRE = nil
TINY = 13
PRE = "rc1"

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

0 comments on commit e63670a

Please sign in to comment.