Skip to content

Commit 5496ec8

Browse files
committed
Preparing for 4.1.10 release
1 parent 8e50a08 commit 5496ec8

File tree

17 files changed

+34
-9
lines changed

17 files changed

+34
-9
lines changed

RAILS_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.1.10.rc4
1+
4.1.10

actionmailer/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.1.10 (March 19, 2015) ##
2+
3+
* No changes.
4+
5+
16
## Rails 4.1.9 (January 6, 2015) ##
27

38
* No changes.

actionmailer/lib/action_mailer/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 1
1010
TINY = 10
11-
PRE = "rc4"
11+
PRE = nil
1212

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

actionpack/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 4.1.10 (March 19, 2015) ##
2+
13
* Preserve default format when generating URLs
24

35
Fixes an issue that would cause the format set in default_url_options to be

actionpack/lib/action_pack/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 1
1010
TINY = 10
11-
PRE = "rc4"
11+
PRE = nil
1212

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

actionview/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 4.1.10 (March 19, 2015) ##
2+
13
* Local variable in a partial is now available even if a falsy value is
24
passed to `:object` when rendering a partial.
35

actionview/lib/action_view/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 1
1010
TINY = 10
11-
PRE = "rc4"
11+
PRE = nil
1212

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

activemodel/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Rails 4.1.10 (March 19, 2015) ##
2+
3+
* No changes.
4+
5+
16
## Rails 4.1.9 (January 6, 2015) ##
27

38
* No changes.

activemodel/lib/active_model/gem_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module VERSION
88
MAJOR = 4
99
MINOR = 1
1010
TINY = 10
11-
PRE = "rc4"
11+
PRE = nil
1212

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

activerecord/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## Rails 4.1.10 (March 19, 2015) ##
2+
13
* Fixed ActiveRecord::Relation#becomes! and changed_attributes issues for type column
24

35
Fixes #17139.

0 commit comments

Comments
 (0)