Preparing for 4.1.15 release

This commit is contained in:
Rafael Mendonça França 2016-03-07 19:34:57 -03:00
parent 06d2bfd42a
commit d5c4b82b64
18 changed files with 42 additions and 42 deletions

View File

@ -1,45 +1,45 @@
PATH
remote: .
specs:
actionmailer (4.1.15.rc1)
actionpack (= 4.1.15.rc1)
actionview (= 4.1.15.rc1)
actionmailer (4.1.15)
actionpack (= 4.1.15)
actionview (= 4.1.15)
mail (~> 2.5, >= 2.5.4)
actionpack (4.1.15.rc1)
actionview (= 4.1.15.rc1)
activesupport (= 4.1.15.rc1)
actionpack (4.1.15)
actionview (= 4.1.15)
activesupport (= 4.1.15)
rack (~> 1.5.2)
rack-test (~> 0.6.2)
actionview (4.1.15.rc1)
activesupport (= 4.1.15.rc1)
actionview (4.1.15)
activesupport (= 4.1.15)
builder (~> 3.1)
erubis (~> 2.7.0)
activemodel (4.1.15.rc1)
activesupport (= 4.1.15.rc1)
activemodel (4.1.15)
activesupport (= 4.1.15)
builder (~> 3.1)
activerecord (4.1.15.rc1)
activemodel (= 4.1.15.rc1)
activesupport (= 4.1.15.rc1)
activerecord (4.1.15)
activemodel (= 4.1.15)
activesupport (= 4.1.15)
arel (~> 5.0.0)
activesupport (4.1.15.rc1)
activesupport (4.1.15)
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.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)
rails (4.1.15)
actionmailer (= 4.1.15)
actionpack (= 4.1.15)
actionview (= 4.1.15)
activemodel (= 4.1.15)
activerecord (= 4.1.15)
activesupport (= 4.1.15)
bundler (>= 1.3.0, < 2.0)
railties (= 4.1.15.rc1)
railties (= 4.1.15)
sprockets-rails (~> 2.0)
railties (4.1.15.rc1)
actionpack (= 4.1.15.rc1)
activesupport (= 4.1.15.rc1)
railties (4.1.15)
actionpack (= 4.1.15)
activesupport (= 4.1.15)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)

View File

@ -1 +1 @@
4.1.15.rc1
4.1.15

View File

@ -1,4 +1,4 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
## Rails 4.1.15 (March 07, 2016) ##
* No changes.

View File

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

View File

@ -1,4 +1,4 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
## Rails 4.1.15 (March 07, 2016) ##
* No changes.

View File

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

View File

@ -1,4 +1,4 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
## Rails 4.1.15 (March 07, 2016) ##
* Changed the meaning of `render "foo/bar"`.

View File

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

View File

@ -1,4 +1,4 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
## Rails 4.1.15 (March 07, 2016) ##
* No changes.

View File

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

View File

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

View File

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

View File

@ -1,4 +1,4 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
## Rails 4.1.15 (March 07, 2016) ##
* No changes.

View File

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

View File

@ -1,4 +1,4 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
## Rails 4.1.15 (March 07, 2016) ##
* No changes.

View File

@ -1,4 +1,4 @@
## Rails 4.1.15.rc1 (March 01, 2016) ##
## Rails 4.1.15 (March 07, 2016) ##
* No changes.

View File

@ -8,7 +8,7 @@ module Rails
MAJOR = 4
MINOR = 1
TINY = 15
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 = 15
PRE = "rc1"
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end