diff --git a/Gemfile.lock b/Gemfile.lock index 9ae802394..560d856ce 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - suspenders (1.12.0) + suspenders (1.13.0) bundler (~> 1.3) rails (~> 4.1.0) @@ -115,7 +115,7 @@ GEM activesupport (>= 3.0) sprockets (~> 2.8) thor (0.19.1) - thread_safe (0.3.3) + thread_safe (0.3.4) tilt (1.4.1) treetop (1.4.15) polyglot diff --git a/NEWS.md b/NEWS.md index 98b0d14ad..8aa1d52ec 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,9 @@ +1.13.0 (May 29, 2014) + +* Remove `FactoryGirl.lint` in `before(:suite)` in order to avoid paying and + estimated extra ~300ms load time on a typical thoughtbot app. +* Automatically join Heroku app in `bin/setup` if using Heroku organizations. + 1.12.0 (May 26, 2014) * Fix `rake dev:prime` now that Suspenders-generated apps require some `ENV` diff --git a/lib/suspenders/version.rb b/lib/suspenders/version.rb index e0447f895..7a995c868 100644 --- a/lib/suspenders/version.rb +++ b/lib/suspenders/version.rb @@ -1,4 +1,4 @@ module Suspenders RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip - VERSION = '1.12.0' + VERSION = '1.13.0' end