Skip to content

Commit

Permalink
Preparing for 4.1.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Sep 11, 2014
1 parent 3a9bcd9 commit 2402716
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion RAILS_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.1.6.rc2
4.1.6
2 changes: 1 addition & 1 deletion actionmailer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 4.1.6 (September 8, 2014) ##
## Rails 4.1.6 (September 11, 2014) ##

* Make ActionMailer::Previews methods class methods. Previously they were
instance methods and ActionMailer tries to render a message when they
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 6
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion actionpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 4.1.6 (September 8, 2014) ##
## Rails 4.1.6 (September 11, 2014) ##

* Prepend a JS comment to JSONP callbacks. Addresses CVE-2014-4671
("Rosetta Flash")
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 6
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion actionview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 4.1.6 (September 8, 2014) ##
## Rails 4.1.6 (September 11, 2014) ##

* Fix that render layout: 'messages/layout' should also be added to the dependency tracker tree.

Expand Down
2 changes: 1 addition & 1 deletion actionview/lib/action_view/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 6
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion activemodel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 4.1.6 (September 8, 2014) ##
## Rails 4.1.6 (September 11, 2014) ##

* No changes.

Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 6
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion activerecord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 4.1.6 (September 8, 2014) ##
## Rails 4.1.6 (September 11, 2014) ##

* Fixed a regression where whitespaces were stripped from DISTINCT queries in
PostgreSQL.
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 6
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion activesupport/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 4.1.6 (September 8, 2014) ##
## Rails 4.1.6 (September 11, 2014) ##

* Fix DateTime comparison with DateTime::Infinity object.

Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 6
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion guides/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 4.1.6 (September 8, 2014) ##
## Rails 4.1.6 (September 11, 2014) ##

* No changes.

Expand Down
2 changes: 1 addition & 1 deletion railties/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Rails 4.1.6 (September 8, 2014) ##
## Rails 4.1.6 (September 11, 2014) ##

* Scaffold generator `_form` partial adds `class="field"` for password
confirmation fields.
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 6
PRE = "rc2"
PRE = nil

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 1 addition & 1 deletion version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module VERSION
MAJOR = 4
MINOR = 1
TINY = 6
PRE = "rc2"
PRE = nil

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

0 comments on commit 2402716

Please sign in to comment.