From dd0587880b3784f7e280b0f061df43110b6b1be9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Tue, 27 Jan 2015 10:28:02 +0100 Subject: [PATCH] Release v2.1.0 --- CHANGELOG.md | 4 ++++ Gemfile.lock | 12 ++++++------ lib/responders/version.rb | 2 +- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bb6d12..5ae2274 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.1.0 + +* No longer automatically set the responders generator as many projects may use this gem as a dependency. When upgrading, users will need to add `config.app_generators.scaffold_controller :responders_controller` to their application. The `responders:install` generator has been updated to automatically insert it in new applications + ## 2.0.1 * Require `rails/railtie` explicitly before using it diff --git a/Gemfile.lock b/Gemfile.lock index ed3abf1..5a7641c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - responders (2.0.2) + responders (2.1.0) railties (>= 4.2.0, < 5) GEM @@ -36,14 +36,14 @@ GEM loofah (2.0.1) nokogiri (>= 1.5.9) metaclass (0.0.4) - mini_portile (0.6.0) + mini_portile (0.6.2) minitest (5.4.2) mocha (1.1.0) metaclass (~> 0.0.1) - nokogiri (1.6.3.1) - mini_portile (= 0.6.0) + nokogiri (1.6.6.2) + mini_portile (~> 0.6.0) rack (1.6.0) - rack-test (0.6.2) + rack-test (0.6.3) rack (>= 1.0) rails-deprecated_sanitizer (1.0.3) activesupport (>= 4.2.0.alpha) @@ -58,7 +58,7 @@ GEM activesupport (= 4.2.0) rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) - rake (10.3.2) + rake (10.4.2) thor (0.19.1) thread_safe (0.3.4) tzinfo (1.2.2) diff --git a/lib/responders/version.rb b/lib/responders/version.rb index 88dc32a..e14966b 100644 --- a/lib/responders/version.rb +++ b/lib/responders/version.rb @@ -1,3 +1,3 @@ module Responders - VERSION = "2.0.2".freeze + VERSION = "2.1.0".freeze end