From 0d59f283b60afce1a8d073a4298d070bb79b1bb9 Mon Sep 17 00:00:00 2001 From: Tute Costa Date: Fri, 23 Oct 2015 11:27:00 -0400 Subject: [PATCH] Release v1.33.0 Update NEWS.md. [ci skip] --- NEWS.md | 10 ++++++++++ lib/suspenders/version.rb | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index b1e102e0d..4ce83b970 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,13 @@ +1.33.0 (October 23, 2015) + +* Add `quiet_assets` as development dependency +* Reduce number of Puma processes and threads to reduce memory usage +* Move non-runtime-dependency i18n-tasks to development and test Gemfile groups +* Move non-runtime-dependency refills to the development Gemfile group +* Generate empty `spec/factories.rb` file in accordance with thoughtbot’s + styleguide +* Shoulda Matchers 3.0 configuration + 1.32.0 (October 9, 2015) * Install Foreman automatically during setup script diff --git a/lib/suspenders/version.rb b/lib/suspenders/version.rb index e6c91f582..1c9b7dfd5 100644 --- a/lib/suspenders/version.rb +++ b/lib/suspenders/version.rb @@ -1,5 +1,5 @@ module Suspenders RAILS_VERSION = "~> 4.2.0" RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip - VERSION = "1.32.0" + VERSION = "1.33.0" end