Preparing for 4.1.9 release

This commit is contained in:
Rafael Mendonça França 2015-01-06 13:00:36 -03:00
parent ed2b4eb1cb
commit 5d9f3cf272
16 changed files with 38 additions and 9 deletions

View File

@ -1 +1 @@
4.1.9.rc1
4.1.9

View File

@ -1,3 +1,8 @@
## Rails 4.1.9 (January 6, 2015) ##
* No changes.
## Rails 4.1.8 (November 16, 2014) ##
* Attachments can be added while rendering the mail template.

View File

@ -8,7 +8,7 @@ module ActionMailer
MAJOR = 4
MINOR = 1
TINY = 9
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,5 @@
## Rails 4.1.9 (January 6, 2015) ##
* Fixed handling of positional url helper arguments when `format: false`.
Fixes #17819.

View File

@ -8,7 +8,7 @@ module ActionPack
MAJOR = 4
MINOR = 1
TINY = 9
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -8,7 +8,7 @@ module ActionView
MAJOR = 4
MINOR = 1
TINY = 9
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,8 @@
## Rails 4.1.9 (January 6, 2015) ##
* No changes.
## Rails 4.1.8 (November 16, 2014) ##
* No changes.

View File

@ -8,7 +8,7 @@ module ActiveModel
MAJOR = 4
MINOR = 1
TINY = 9
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,5 @@
## Rails 4.1.9 (January 6, 2015) ##
* `db:schema:load` and `db:structure:load` no longer purge the database
before loading the schema. This is left for the user to do.
`db:test:prepare` will still purge the database.

View File

@ -8,7 +8,7 @@ module ActiveRecord
MAJOR = 4
MINOR = 1
TINY = 9
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,8 @@
## Rails 4.1.9 (January 6, 2015) ##
* No changes.
## Rails 4.1.8 (November 16, 2014) ##
* `Method` objects now report themselves as not `duplicable?`. This allows

View File

@ -8,7 +8,7 @@ module ActiveSupport
MAJOR = 4
MINOR = 1
TINY = 9
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -1,3 +1,8 @@
## Rails 4.1.9 (January 6, 2015) ##
* No changes.
## Rails 4.1.8 (November 16, 2014) ##
* No changes.

View File

@ -1,3 +1,8 @@
## Rails 4.1.9 (January 6, 2015) ##
* No changes.
## Rails 4.1.8 (November 16, 2014) ##
* `secret_token` is now saved in `Rails.application.secrets.secret_token`

View File

@ -8,7 +8,7 @@ module Rails
MAJOR = 4
MINOR = 1
TINY = 9
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end

View File

@ -8,7 +8,7 @@ module Rails
MAJOR = 4
MINOR = 1
TINY = 9
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end