From d8803304051639dfcb87d61f58a1960b1005de87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Tue, 12 Jul 2016 19:18:54 -0300 Subject: [PATCH] Preparing for 4.1.16 release --- Gemfile.lock | 50 +++++++++---------- RAILS_VERSION | 2 +- actionmailer/CHANGELOG.md | 2 +- actionmailer/lib/action_mailer/gem_version.rb | 2 +- actionpack/CHANGELOG.md | 2 +- actionpack/lib/action_pack/gem_version.rb | 2 +- actionview/CHANGELOG.md | 2 +- actionview/lib/action_view/gem_version.rb | 2 +- activemodel/CHANGELOG.md | 2 +- activemodel/lib/active_model/gem_version.rb | 2 +- activerecord/CHANGELOG.md | 2 +- activerecord/lib/active_record/gem_version.rb | 2 +- activesupport/CHANGELOG.md | 2 +- .../lib/active_support/gem_version.rb | 2 +- guides/CHANGELOG.md | 2 +- railties/CHANGELOG.md | 2 +- railties/lib/rails/gem_version.rb | 2 +- version.rb | 2 +- 18 files changed, 42 insertions(+), 42 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index c9bd56bb893..287f79dc4e8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,45 +1,45 @@ PATH remote: . specs: - actionmailer (4.1.16.rc1) - actionpack (= 4.1.16.rc1) - actionview (= 4.1.16.rc1) + actionmailer (4.1.16) + actionpack (= 4.1.16) + actionview (= 4.1.16) mail (~> 2.5, >= 2.5.4) - actionpack (4.1.16.rc1) - actionview (= 4.1.16.rc1) - activesupport (= 4.1.16.rc1) + actionpack (4.1.16) + actionview (= 4.1.16) + activesupport (= 4.1.16) rack (~> 1.5.2) rack-test (~> 0.6.2) - actionview (4.1.16.rc1) - activesupport (= 4.1.16.rc1) + actionview (4.1.16) + activesupport (= 4.1.16) builder (~> 3.1) erubis (~> 2.7.0) - activemodel (4.1.16.rc1) - activesupport (= 4.1.16.rc1) + activemodel (4.1.16) + activesupport (= 4.1.16) builder (~> 3.1) - activerecord (4.1.16.rc1) - activemodel (= 4.1.16.rc1) - activesupport (= 4.1.16.rc1) + activerecord (4.1.16) + activemodel (= 4.1.16) + activesupport (= 4.1.16) arel (~> 5.0.0) - activesupport (4.1.16.rc1) + activesupport (4.1.16) 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.16.rc1) - actionmailer (= 4.1.16.rc1) - actionpack (= 4.1.16.rc1) - actionview (= 4.1.16.rc1) - activemodel (= 4.1.16.rc1) - activerecord (= 4.1.16.rc1) - activesupport (= 4.1.16.rc1) + rails (4.1.16) + actionmailer (= 4.1.16) + actionpack (= 4.1.16) + actionview (= 4.1.16) + activemodel (= 4.1.16) + activerecord (= 4.1.16) + activesupport (= 4.1.16) bundler (>= 1.3.0, < 2.0) - railties (= 4.1.16.rc1) + railties (= 4.1.16) sprockets-rails (~> 2.0) - railties (4.1.16.rc1) - actionpack (= 4.1.16.rc1) - activesupport (= 4.1.16.rc1) + railties (4.1.16) + actionpack (= 4.1.16) + activesupport (= 4.1.16) rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) diff --git a/RAILS_VERSION b/RAILS_VERSION index 847e63b4a5a..1b94a070ecd 100644 --- a/RAILS_VERSION +++ b/RAILS_VERSION @@ -1 +1 @@ -4.1.16.rc1 +4.1.16 diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md index 0fac930ffb4..95cbe79b20b 100644 --- a/actionmailer/CHANGELOG.md +++ b/actionmailer/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.1.16.rc1 (July 01, 2016) ## +## Rails 4.1.16 (July 12, 2016) ## * No changes. diff --git a/actionmailer/lib/action_mailer/gem_version.rb b/actionmailer/lib/action_mailer/gem_version.rb index 1e1221bebfa..952c4361601 100644 --- a/actionmailer/lib/action_mailer/gem_version.rb +++ b/actionmailer/lib/action_mailer/gem_version.rb @@ -8,7 +8,7 @@ module ActionMailer MAJOR = 4 MINOR = 1 TINY = 16 - PRE = "rc1" + PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index c74c68446f0..56c03f3ef0e 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.1.16.rc1 (July 01, 2016) ## +## Rails 4.1.16 (July 12, 2016) ## * No changes. diff --git a/actionpack/lib/action_pack/gem_version.rb b/actionpack/lib/action_pack/gem_version.rb index b9ee054b204..5b90f6d541c 100644 --- a/actionpack/lib/action_pack/gem_version.rb +++ b/actionpack/lib/action_pack/gem_version.rb @@ -8,7 +8,7 @@ module ActionPack MAJOR = 4 MINOR = 1 TINY = 16 - PRE = "rc1" + PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index 588881508e2..51af059d702 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.1.16.rc1 (July 01, 2016) ## +## Rails 4.1.16 (July 12, 2016) ## * No changes. diff --git a/actionview/lib/action_view/gem_version.rb b/actionview/lib/action_view/gem_version.rb index 1cb0c932801..a43c8496d66 100644 --- a/actionview/lib/action_view/gem_version.rb +++ b/actionview/lib/action_view/gem_version.rb @@ -8,7 +8,7 @@ module ActionView MAJOR = 4 MINOR = 1 TINY = 16 - PRE = "rc1" + PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md index bd361f405c4..e5f918f3f4b 100644 --- a/activemodel/CHANGELOG.md +++ b/activemodel/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.1.16.rc1 (July 01, 2016) ## +## Rails 4.1.16 (July 12, 2016) ## * No changes. diff --git a/activemodel/lib/active_model/gem_version.rb b/activemodel/lib/active_model/gem_version.rb index 91e343a0bc8..60dc5e361fb 100644 --- a/activemodel/lib/active_model/gem_version.rb +++ b/activemodel/lib/active_model/gem_version.rb @@ -8,7 +8,7 @@ module ActiveModel MAJOR = 4 MINOR = 1 TINY = 16 - PRE = "rc1" + PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 4f2a43c6b7b..9a8c15b686d 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.1.16.rc1 (July 01, 2016) ## +## Rails 4.1.16 (July 12, 2016) ## * Correctly pass MySQL options when using structure_dump or structure_load diff --git a/activerecord/lib/active_record/gem_version.rb b/activerecord/lib/active_record/gem_version.rb index 80142703387..9a27b23bfc0 100644 --- a/activerecord/lib/active_record/gem_version.rb +++ b/activerecord/lib/active_record/gem_version.rb @@ -8,7 +8,7 @@ module ActiveRecord MAJOR = 4 MINOR = 1 TINY = 16 - PRE = "rc1" + PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index dd59421bd88..9fa621f637a 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.1.16.rc1 (July 01, 2016) ## +## Rails 4.1.16 (July 12, 2016) ## * No changes. diff --git a/activesupport/lib/active_support/gem_version.rb b/activesupport/lib/active_support/gem_version.rb index cbf367c9e01..ab803bd1c27 100644 --- a/activesupport/lib/active_support/gem_version.rb +++ b/activesupport/lib/active_support/gem_version.rb @@ -8,7 +8,7 @@ module ActiveSupport MAJOR = 4 MINOR = 1 TINY = 16 - PRE = "rc1" + PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/guides/CHANGELOG.md b/guides/CHANGELOG.md index 1e9041a5695..5d71e0e156e 100644 --- a/guides/CHANGELOG.md +++ b/guides/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.1.16.rc1 (July 01, 2016) ## +## Rails 4.1.16 (July 12, 2016) ## * No changes. diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md index d951f148b9c..43eba87c447 100644 --- a/railties/CHANGELOG.md +++ b/railties/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 4.1.16.rc1 (July 01, 2016) ## +## Rails 4.1.16 (July 12, 2016) ## * Do not run `bundle install` when generating a new plugin. diff --git a/railties/lib/rails/gem_version.rb b/railties/lib/rails/gem_version.rb index 859dee234df..f956748c69e 100644 --- a/railties/lib/rails/gem_version.rb +++ b/railties/lib/rails/gem_version.rb @@ -8,7 +8,7 @@ module Rails MAJOR = 4 MINOR = 1 TINY = 16 - PRE = "rc1" + PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/version.rb b/version.rb index 859dee234df..f956748c69e 100644 --- a/version.rb +++ b/version.rb @@ -8,7 +8,7 @@ module Rails MAJOR = 4 MINOR = 1 TINY = 16 - PRE = "rc1" + PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end