Preparing for 4.1.15.rc1 release

This commit is contained in:
Rafael Mendonça França 2016-03-01 15:41:59 -03:00
parent 03c9957dfe
commit 06d2bfd42a
18 changed files with 77 additions and 43 deletions

View File

@ -1,45 +1,45 @@
PATH
remote: .
specs:
actionmailer (4.1.14.2)
actionpack (= 4.1.14.2)
actionview (= 4.1.14.2)
actionmailer (4.1.15.rc1)
actionpack (= 4.1.15.rc1)
actionview (= 4.1.15.rc1)
mail (~> 2.5, >= 2.5.4)
actionpack (4.1.14.2)
actionview (= 4.1.14.2)
activesupport (= 4.1.14.2)
actionpack (4.1.15.rc1)
actionview (= 4.1.15.rc1)
activesupport (= 4.1.15.rc1)
rack (~> 1.5.2)
rack-test (~> 0.6.2)
actionview (4.1.14.2)
activesupport (= 4.1.14.2)
actionview (4.1.15.rc1)
activesupport (= 4.1.15.rc1)
builder (~> 3.1)
erubis (~> 2.7.0)
activemodel (4.1.14.2)
activesupport (= 4.1.14.2)
activemodel (4.1.15.rc1)
activesupport (= 4.1.15.rc1)
builder (~> 3.1)
activerecord (4.1.14.2)
activemodel (= 4.1.14.2)
activesupport (= 4.1.14.2)
activerecord (4.1.15.rc1)
activemodel (= 4.1.15.rc1)
activesupport (= 4.1.15.rc1)
arel (~> 5.0.0)
activesupport (4.1.14.2)
activesupport (4.1.15.rc1)
i18n (~> 0.6, >= 0.6.9)
json (~> 1.7, >= 1.7.7)
minitest (~> 5.1)
thread_safe (~> 0.1)
tzinfo (~> 1.1)
rails (4.1.14.2)
actionmailer (= 4.1.14.2)
actionpack (= 4.1.14.2)
actionview (= 4.1.14.2)
activemodel (= 4.1.14.2)
activerecord (= 4.1.14.2)
activesupport (= 4.1.14.2)
rails (4.1.15.rc1)
actionmailer (= 4.1.15.rc1)
actionpack (= 4.1.15.rc1)
actionview (= 4.1.15.rc1)
activemodel (= 4.1.15.rc1)
activerecord (= 4.1.15.rc1)
activesupport (= 4.1.15.rc1)
bundler (>= 1.3.0, < 2.0)
railties (= 4.1.14.2)
railties (= 4.1.15.rc1)
sprockets-rails (~> 2.0)
railties (4.1.14.2)
actionpack (= 4.1.14.2)
activesupport (= 4.1.14.2)
railties (4.1.15.rc1)
actionpack (= 4.1.15.rc1)
activesupport (= 4.1.15.rc1)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
@ -71,7 +71,7 @@ GEM
mail (2.6.3)
mime-types (>= 1.16, < 3)
metaclass (0.0.4)
mime-types (2.99)
mime-types (2.99.1)
mini_portile2 (2.0.0)
minitest (5.3.3)
mocha (0.14.0)

View File

@ -1 +1 @@
4.1.14.2
4.1.15.rc1

View File

@ -1,3 +1,8 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
* No changes.
## Rails 4.1.14.2 (February 26, 2016) ##
* No changes.

View File

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

View File

@ -1,3 +1,8 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
* No changes.
## Rails 4.1.14.2 (February 26, 2016) ##
* Do not allow render with unpermitted parameter.

View File

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

View File

@ -1,3 +1,5 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
* Changed the meaning of `render "foo/bar"`.
Previously, calling `render "foo/bar"` in a controller action is equivalent

View File

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

View File

@ -1,3 +1,8 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
* No changes.
## Rails 4.1.14.2 (February 26, 2016) ##
* No changes.

View File

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

View File

@ -1,3 +1,5 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
* Fixes custom primary keys for associations when calling `Relation#where`
Fixes #23327.

View File

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

View File

@ -1,3 +1,8 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
* No changes.
## Rails 4.1.14.2 (February 26, 2016) ##
* No changes.

View File

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

View File

@ -1,3 +1,8 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
* No changes.
## Rails 4.1.14.2 (February 26, 2016) ##
* No changes.

View File

@ -1,3 +1,8 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
* No changes.
## Rails 4.1.14.2 (February 26, 2016) ##
* No changes.

View File

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

View File

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