Skip to content

Commit 59bb184

Browse files
committed
Preparing for 4.2.1.rc1 release
1 parent f5d2f3f commit 59bb184

File tree

20 files changed

+72
-48
lines changed

20 files changed

+72
-48
lines changed

Gemfile.lock

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -14,55 +14,55 @@ GIT
1414
PATH
1515
remote: .
1616
specs:
17-
actionmailer (4.2.0)
18-
actionpack (= 4.2.0)
19-
actionview (= 4.2.0)
20-
activejob (= 4.2.0)
17+
actionmailer (4.2.1.rc1)
18+
actionpack (= 4.2.1.rc1)
19+
actionview (= 4.2.1.rc1)
20+
activejob (= 4.2.1.rc1)
2121
mail (~> 2.5, >= 2.5.4)
2222
rails-dom-testing (~> 1.0, >= 1.0.5)
23-
actionpack (4.2.0)
24-
actionview (= 4.2.0)
25-
activesupport (= 4.2.0)
23+
actionpack (4.2.1.rc1)
24+
actionview (= 4.2.1.rc1)
25+
activesupport (= 4.2.1.rc1)
2626
rack (~> 1.6)
2727
rack-test (~> 0.6.2)
2828
rails-dom-testing (~> 1.0, >= 1.0.5)
2929
rails-html-sanitizer (~> 1.0, >= 1.0.1)
30-
actionview (4.2.0)
31-
activesupport (= 4.2.0)
30+
actionview (4.2.1.rc1)
31+
activesupport (= 4.2.1.rc1)
3232
builder (~> 3.1)
3333
erubis (~> 2.7.0)
3434
rails-dom-testing (~> 1.0, >= 1.0.5)
3535
rails-html-sanitizer (~> 1.0, >= 1.0.1)
36-
activejob (4.2.0)
37-
activesupport (= 4.2.0)
36+
activejob (4.2.1.rc1)
37+
activesupport (= 4.2.1.rc1)
3838
globalid (>= 0.3.0)
39-
activemodel (4.2.0)
40-
activesupport (= 4.2.0)
39+
activemodel (4.2.1.rc1)
40+
activesupport (= 4.2.1.rc1)
4141
builder (~> 3.1)
42-
activerecord (4.2.0)
43-
activemodel (= 4.2.0)
44-
activesupport (= 4.2.0)
42+
activerecord (4.2.1.rc1)
43+
activemodel (= 4.2.1.rc1)
44+
activesupport (= 4.2.1.rc1)
4545
arel (~> 6.0)
46-
activesupport (4.2.0)
46+
activesupport (4.2.1.rc1)
4747
i18n (~> 0.7)
4848
json (~> 1.7, >= 1.7.7)
4949
minitest (~> 5.1)
5050
thread_safe (~> 0.3, >= 0.3.4)
5151
tzinfo (~> 1.1)
52-
rails (4.2.0)
53-
actionmailer (= 4.2.0)
54-
actionpack (= 4.2.0)
55-
actionview (= 4.2.0)
56-
activejob (= 4.2.0)
57-
activemodel (= 4.2.0)
58-
activerecord (= 4.2.0)
59-
activesupport (= 4.2.0)
52+
rails (4.2.1.rc1)
53+
actionmailer (= 4.2.1.rc1)
54+
actionpack (= 4.2.1.rc1)
55+
actionview (= 4.2.1.rc1)
56+
activejob (= 4.2.1.rc1)
57+
activemodel (= 4.2.1.rc1)
58+
activerecord (= 4.2.1.rc1)
59+
activesupport (= 4.2.1.rc1)
6060
bundler (>= 1.3.0, < 2.0)
61-
railties (= 4.2.0)
61+
railties (= 4.2.1.rc1)
6262
sprockets-rails
63-
railties (4.2.0)
64-
actionpack (= 4.2.0)
65-
activesupport (= 4.2.0)
63+
railties (4.2.1.rc1)
64+
actionpack (= 4.2.1.rc1)
65+
activesupport (= 4.2.1.rc1)
6666
rake (>= 0.8.7)
6767
thor (>= 0.18.1, < 2.0)
6868

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.2.0
1+
4.2.1.rc1

actionmailer/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 4.2.0 (December 20, 2014) ##
2+
13
* `MailerGenerator` now generates layouts by default. The HTML mailer layout
24
now includes `<html>` and `<body>` tags which improve the spam rating in
35
some spam detection engines. Mailers now inherit from `ApplicationMailer`

actionmailer/lib/action_mailer/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 0
11-
PRE = nil
10+
TINY = 1
11+
PRE = "rc1"
1212

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

actionpack/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@
7979
8080
*Alex Robbin*
8181
82+
83+
## Rails 4.2.0 (December 20, 2014) ##
84+
8285
* Add `ActionController::Parameters#to_unsafe_h` to return an unfiltered
8386
`Hash` representation of Parameters object. This is now a preferred way to
8487
retrieve unfiltered parameters as we will stop inheriting `AC::Parameters`

actionpack/lib/action_pack/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 0
11-
PRE = nil
10+
TINY = 1
11+
PRE = "rc1"
1212

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

actionview/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
*Angelo Capilleri*
1010

11+
12+
## Rails 4.2.0 (December 20, 2014) ##
13+
1114
* Local variable in a partial is now available even if a falsy value is
1215
passed to `:object` when rendering a partial.
1316

actionview/lib/action_view/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 0
11-
PRE = nil
10+
TINY = 1
11+
PRE = "rc1"
1212

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

activejob/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,7 @@
44

55
*Sean Griffin*
66

7+
8+
## Rails 4.2.0 (December 20, 2014) ##
9+
710
* Started project.

activejob/lib/active_job/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 0
11-
PRE = nil
10+
TINY = 1
11+
PRE = "rc1"
1212

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

activemodel/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 4.2.0 (December 20, 2014) ##
2+
13
* Passwords with spaces only allowed in `ActiveModel::SecurePassword`.
24

35
Presence validation can be used to restore old behavior.

activemodel/lib/active_model/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 0
11-
PRE = nil
10+
TINY = 1
11+
PRE = "rc1"
1212

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

activerecord/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,9 @@
200200

201201
*Daniel Fox*
202202

203+
204+
## Rails 4.2.0 (December 20, 2014) ##
205+
203206
* Introduce `force: :cascade` option for `create_table`. Using this option
204207
will recreate tables even if they have dependent objects (like foreign keys).
205208
`db/schema.rb` now uses `force: :cascade`. This makes it possible to

activerecord/lib/active_record/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 0
11-
PRE = nil
10+
TINY = 1
11+
PRE = "rc1"
1212

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

activesupport/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828

2929
*Andrey Novikov*
3030

31+
32+
## Rails 4.2.0 (December 20, 2014) ##
33+
3134
* The decorated `load` and `require` methods are now kept private.
3235

3336
Fixes #17553.

activesupport/lib/active_support/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 0
11-
PRE = nil
10+
TINY = 1
11+
PRE = "rc1"
1212

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

guides/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 4.2.0 (December 20, 2014) ##
2+
13
* New guide about constant autoloading and reloading.
24

35
*Xavier Noria*

railties/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
*Rafael Mendonça França*
1414

15+
16+
## Rails 4.2.0 (December 20, 2014) ##
17+
1518
* Deprecate `config.serve_static_assets` in favor of `config.serve_static_files`
1619
to clarify that the option is unrelated to the asset pipeline.
1720

railties/lib/rails/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 0
11-
PRE = nil
10+
TINY = 1
11+
PRE = "rc1"
1212

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

version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ def self.gem_version
77
module VERSION
88
MAJOR = 4
99
MINOR = 2
10-
TINY = 0
11-
PRE = nil
10+
TINY = 1
11+
PRE = "rc1"
1212

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

0 commit comments

Comments
 (0)