Skip to content

Commit 9649cb4

Browse files
committed
Preparing for 4.0.6.rc3 release
1 parent f3a2b61 commit 9649cb4

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.6.rc2
1+
4.0.6.rc3

actionmailer/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 4.0.6 (June 16, 2014) ##
1+
## Rails 4.0.6 (June 23, 2014) ##
22

33
*No changes*
44

actionmailer/lib/action_mailer/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActionMailer
22
# Returns the version of the currently loaded ActionMailer as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.0.6.rc2"
4+
Gem::Version.new "4.0.6.rc3"
55
end
66

77
module VERSION #:nodoc:

actionpack/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 4.0.6 (June 16, 2014) ##
1+
## Rails 4.0.6 (June 23, 2014) ##
22

33
* Fix URL generation with `:trailing_slash` such that it does not add
44
a trailing slash after `.:format`

actionpack/lib/action_pack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActionPack
22
# Returns the version of the currently loaded ActionPack as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.0.6.rc2"
4+
Gem::Version.new "4.0.6.rc3"
55
end
66

77
module VERSION #:nodoc:

activemodel/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 4.0.6 (June 16, 2014) ##
1+
## Rails 4.0.6 (June 23, 2014) ##
22

33
*No changes*
44

activemodel/lib/active_model/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActiveModel
22
# Returns the version of the currently loaded ActiveModel as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.0.6.rc2"
4+
Gem::Version.new "4.0.6.rc3"
55
end
66

77
module VERSION #:nodoc:

activerecord/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 4.0.6 (June 16, 2014) ##
1+
## Rails 4.0.6 (June 23, 2014) ##
22

33
* Fixed the inferred table name of a has_and_belongs_to_many auxiliar
44
table inside a schema.

activerecord/lib/active_record/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActiveRecord
22
# Returns the version of the currently loaded ActiveRecord as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.0.6.rc2"
4+
Gem::Version.new "4.0.6.rc3"
55
end
66

77
module VERSION #:nodoc:

activesupport/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 4.0.6 (June 16, 2014) ##
1+
## Rails 4.0.6 (June 23, 2014) ##
22

33
* `Hash#deep_transform_keys` and `Hash#deep_transform_keys!` now transform hashes
44
in nested arrays. This change also applies to `Hash#deep_stringify_keys`,

activesupport/lib/active_support/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ActiveSupport
22
# Returns the version of the currently loaded ActiveSupport as a Gem::Version
33
def self.version
4-
Gem::Version.new "4.0.6.rc2"
4+
Gem::Version.new "4.0.6.rc3"
55
end
66

77
module VERSION #:nodoc:

guides/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 4.0.6 (June 16, 2014) ##
1+
## Rails 4.0.6 (June 23, 2014) ##
22

33
*No changes*
44

railties/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rails 4.0.6 (June 16, 2014) ##
1+
## Rails 4.0.6 (June 23, 2014) ##
22

33
*No changes*
44

railties/lib/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module VERSION
33
MAJOR = 4
44
MINOR = 0
55
TINY = 6
6-
PRE = "rc2"
6+
PRE = "rc3"
77

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

version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module VERSION
33
MAJOR = 4
44
MINOR = 0
55
TINY = 6
6-
PRE = "rc2"
6+
PRE = "rc3"
77

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

0 commit comments

Comments
 (0)