diff --git a/Gemfile.lock b/Gemfile.lock index bb1d82ad7..3c854d1d3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,34 +1,34 @@ PATH remote: . specs: - suspenders (1.10.2) + suspenders (1.11.0) bundler (~> 1.3) rails (~> 4.1.0) GEM remote: https://rubygems.org/ specs: - actionmailer (4.1.0) - actionpack (= 4.1.0) - actionview (= 4.1.0) + actionmailer (4.1.1) + actionpack (= 4.1.1) + actionview (= 4.1.1) mail (~> 2.5.4) - actionpack (4.1.0) - actionview (= 4.1.0) - activesupport (= 4.1.0) + actionpack (4.1.1) + actionview (= 4.1.1) + activesupport (= 4.1.1) rack (~> 1.5.2) rack-test (~> 0.6.2) - actionview (4.1.0) - activesupport (= 4.1.0) + actionview (4.1.1) + activesupport (= 4.1.1) builder (~> 3.1) erubis (~> 2.7.0) - activemodel (4.1.0) - activesupport (= 4.1.0) + activemodel (4.1.1) + activesupport (= 4.1.1) builder (~> 3.1) - activerecord (4.1.0) - activemodel (= 4.1.0) - activesupport (= 4.1.0) + activerecord (4.1.1) + activemodel (= 4.1.1) + activesupport (= 4.1.1) arel (~> 5.0.0) - activesupport (4.1.0) + activesupport (4.1.1) i18n (~> 0.6, >= 0.6.9) json (~> 1.7, >= 1.7.7) minitest (~> 5.1) @@ -70,7 +70,7 @@ GEM treetop (~> 1.4.8) mime-types (1.25.1) mini_portile (0.5.2) - minitest (5.3.3) + minitest (5.3.4) multi_json (1.7.9) multi_test (0.0.1) nokogiri (1.6.1) @@ -81,22 +81,22 @@ GEM rack (1.5.2) rack-test (0.6.2) rack (>= 1.0) - rails (4.1.0) - actionmailer (= 4.1.0) - actionpack (= 4.1.0) - actionview (= 4.1.0) - activemodel (= 4.1.0) - activerecord (= 4.1.0) - activesupport (= 4.1.0) + rails (4.1.1) + actionmailer (= 4.1.1) + actionpack (= 4.1.1) + actionview (= 4.1.1) + activemodel (= 4.1.1) + activerecord (= 4.1.1) + activesupport (= 4.1.1) bundler (>= 1.3.0, < 2.0) - railties (= 4.1.0) + railties (= 4.1.1) sprockets-rails (~> 2.0) - railties (4.1.0) - actionpack (= 4.1.0) - activesupport (= 4.1.0) + railties (4.1.1) + actionpack (= 4.1.1) + activesupport (= 4.1.1) rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) - rake (10.3.1) + rake (10.3.2) rspec (2.14.1) rspec-core (~> 2.14.0) rspec-expectations (~> 2.14.0) diff --git a/NEWS.md b/NEWS.md index c685920cd..a7641e08b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,15 @@ +1.11.0 (May 17, 2014) + +* Generate a Rails 4.1.1 app and implement fixes for compatibility. +* Escape ERb in secrets.yml +* Maintain ActiveRecord test schema. +* Make Shoulda Matchers work with Spring. +* Unify Ruby version for gem and suspended apps. +* Move SMTP variable settings out of initializer. +* Connect to Postgres on localhost. +* Add `bin/setup` for contributors. +* Improve and document TravisCI configuration. + 1.10.2 (April 28, 2014) * Fix bundling Bourbon and Neat. diff --git a/lib/suspenders/version.rb b/lib/suspenders/version.rb index 77400354d..ca6ac2d75 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.10.2' + VERSION = '1.11.0' end