Skip to content

Commit

Permalink
Preparing for 4.1.13.rc1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Aug 14, 2015
1 parent 3d37fb8 commit 099a918
Show file tree
Hide file tree
Showing 17 changed files with 54 additions and 17 deletions.
2 changes: 1 addition & 1 deletion RAILS_VERSION
@@ -1 +1 @@
4.1.12
4.1.13.rc1
5 changes: 5 additions & 0 deletions actionmailer/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 4.1.13 (August 14, 2015) ##

* No changes.


## Rails 4.1.12 (June 25, 2015) ##

* Mailer preview now uses `url_for` to fix links to emails for apps running on
Expand Down
4 changes: 2 additions & 2 deletions actionmailer/lib/action_mailer/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
PRE = nil
TINY = 13
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions actionpack/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 4.1.13 (August 14, 2015) ##

* No changes.


## Rails 4.1.12 (June 25, 2015) ##

* Fix handling of empty X_FORWARDED_HOST header in raw_host_with_port
Expand Down
4 changes: 2 additions & 2 deletions actionpack/lib/action_pack/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
PRE = nil
TINY = 13
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions actionview/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 4.1.13 (August 14, 2015) ##

* No changes.


## Rails 4.1.12 (June 25, 2015) ##

* `translate` should handle `raise` flag correctly in case of both main and default
Expand Down
4 changes: 2 additions & 2 deletions actionview/lib/action_view/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
PRE = nil
TINY = 13
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions activemodel/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 4.1.13 (August 14, 2015) ##

* No changes.


## Rails 4.1.12 (June 25, 2015) ##

* No changes.
Expand Down
4 changes: 2 additions & 2 deletions activemodel/lib/active_model/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
PRE = nil
TINY = 13
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
2 changes: 2 additions & 0 deletions activerecord/CHANGELOG.md
@@ -1,3 +1,5 @@
## Rails 4.1.13 (August 14, 2015) ##

* Don't define autosave association callbacks twice from
`accepts_nested_attributes_for`.

Expand Down
4 changes: 2 additions & 2 deletions activerecord/lib/active_record/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
PRE = nil
TINY = 13
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions activesupport/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 4.1.13 (August 14, 2015) ##

* No changes.


## Rails 4.1.12 (June 25, 2015) ##

* No changes.
Expand Down
4 changes: 2 additions & 2 deletions activesupport/lib/active_support/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
PRE = nil
TINY = 13
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
5 changes: 5 additions & 0 deletions guides/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 4.1.13 (August 14, 2015) ##

* No changes.


## Rails 4.1.12 (June 25, 2015) ##

* No changes.
Expand Down
5 changes: 5 additions & 0 deletions railties/CHANGELOG.md
@@ -1,3 +1,8 @@
## Rails 4.1.13 (August 14, 2015) ##

* No changes.


## Rails 4.1.12 (June 25, 2015) ##

* Add support for inline images in mailer previews by using an interceptor
Expand Down
4 changes: 2 additions & 2 deletions railties/lib/rails/gem_version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
PRE = nil
TINY = 13
PRE = "rc1"

STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
Expand Down
4 changes: 2 additions & 2 deletions version.rb
Expand Up @@ -7,8 +7,8 @@ def self.gem_version
module VERSION
MAJOR = 4
MINOR = 1
TINY = 12
PRE = nil
TINY = 13
PRE = "rc1"

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

0 comments on commit 099a918

Please sign in to comment.