Skip to content

Commit 31e9229

Browse files
committed
Preparing for 4.0.8 release
1 parent c1156bf commit 31e9229

File tree

15 files changed

+45
-8
lines changed

15 files changed

+45
-8
lines changed

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.7
1+
4.0.8

actionmailer/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.0.8 (July 2, 2014) ##
2+
3+
*No changes*
4+
5+
16
## Rails 4.0.7 (July 2, 2014) ##
27

38
*No changes*

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.7"
4+
Gem::Version.new "4.0.8"
55
end
66

77
module VERSION #:nodoc:

actionpack/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.0.8 (July 2, 2014) ##
2+
3+
*No changes*
4+
5+
16
## Rails 4.0.7 (July 2, 2014) ##
27

38
*No changes*

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.7"
4+
Gem::Version.new "4.0.8"
55
end
66

77
module VERSION #:nodoc:

activemodel/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.0.8 (July 2, 2014) ##
2+
3+
*No changes*
4+
5+
16
## Rails 4.0.7 (July 2, 2014) ##
27

38
*No changes*

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.7"
4+
Gem::Version.new "4.0.8"
55
end
66

77
module VERSION #:nodoc:

activerecord/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## Rails 4.0.8 (July 2, 2014) ##
2+
3+
* Fix regression added from the latest security fix.
4+
5+
*Sean Griffin*, *Matthew Draper*
6+
7+
18
## Rails 4.0.7 (July 2, 2014) ##
29

310
* Fix SQL Injection Vulnerability in 'range' quoting.

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.7"
4+
Gem::Version.new "4.0.8"
55
end
66

77
module VERSION #:nodoc:

activesupport/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.0.8 (July 2, 2014) ##
2+
3+
*No changes*
4+
5+
16
## Rails 4.0.7 (July 2, 2014) ##
27

38
*No changes*

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.7"
4+
Gem::Version.new "4.0.8"
55
end
66

77
module VERSION #:nodoc:

guides/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.0.8 (July 2, 2014) ##
2+
3+
*No changes*
4+
5+
16
## Rails 4.0.7 (July 2, 2014) ##
27

38
*No changes*

railties/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.0.8 (July 2, 2014) ##
2+
3+
*No changes*
4+
5+
16
## Rails 4.0.7 (July 2, 2014) ##
27

38
*No changes*

railties/lib/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Rails
22
module VERSION
33
MAJOR = 4
44
MINOR = 0
5-
TINY = 7
5+
TINY = 8
66
PRE = nil
77

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

version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Rails
22
module VERSION
33
MAJOR = 4
44
MINOR = 0
5-
TINY = 7
5+
TINY = 8
66
PRE = nil
77

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

0 commit comments

Comments
 (0)