mirror of https://github.com/rails/rails
Preparing for 4.1.2 release
This commit is contained in:
parent
6ed0f63398
commit
14f635a066
|
@ -1 +1 @@
|
|||
4.1.2.rc3
|
||||
4.1.2
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.2 (June 23, 2014) ##
|
||||
## Rails 4.1.2 (June 26, 2014) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActionMailer
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 2
|
||||
PRE = "rc3"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.2 (June 23, 2014) ##
|
||||
## Rails 4.1.2 (June 26, 2014) ##
|
||||
|
||||
* Fix URL generation with `:trailing_slash` such that it does not add
|
||||
a trailing slash after `.:format`
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActionPack
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 2
|
||||
PRE = "rc3"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.2 (June 23, 2014) ##
|
||||
## Rails 4.1.2 (June 26, 2014) ##
|
||||
|
||||
* Change `asset_path` to use File.join to create proper paths.
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActionView
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 2
|
||||
PRE = "rc3"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.2 (June 23, 2014) ##
|
||||
## Rails 4.1.2 (June 26, 2014) ##
|
||||
|
||||
* No changes.
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActiveModel
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 2
|
||||
PRE = "rc3"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.2 (June 23, 2014) ##
|
||||
## Rails 4.1.2 (June 26, 2014) ##
|
||||
|
||||
* Fix regression on eager loading association based on SQL query rather than
|
||||
existing column.
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActiveRecord
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 2
|
||||
PRE = "rc3"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.2 (June 23, 2014) ##
|
||||
## Rails 4.1.2 (June 26, 2014) ##
|
||||
|
||||
* `Hash#deep_transform_keys` and `Hash#deep_transform_keys!` now transform hashes
|
||||
in nested arrays. This change also applies to `Hash#deep_stringify_keys`,
|
||||
|
|
|
@ -8,7 +8,7 @@ module ActiveSupport
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 2
|
||||
PRE = "rc3"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.2 (June 23, 2014) ##
|
||||
## Rails 4.1.2 (June 26, 2014) ##
|
||||
|
||||
* Update all Rails 4.1.0 references to 4.1.1 within the guides and code.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Rails 4.1.2 (June 23, 2014) ##
|
||||
## Rails 4.1.2 (June 26, 2014) ##
|
||||
|
||||
* Load database configuration from the first `database.yml` available in paths.
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module Rails
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 2
|
||||
PRE = "rc3"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
|
@ -8,7 +8,7 @@ module Rails
|
|||
MAJOR = 4
|
||||
MINOR = 1
|
||||
TINY = 2
|
||||
PRE = "rc3"
|
||||
PRE = nil
|
||||
|
||||
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue