diff --git a/NEWS.md b/NEWS.md index b5ab966aa..065814af1 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,8 +1,13 @@ -HEAD +1.35.0 (December 30, 2015) +* Introduce Heroku Pipelines support +* Update to Ruby 2.3.0 +* Heroku commands run on staging by default +* Git ignore `.env.local` instead of `.env` * Add ability to use byebug navigation commands inside of Pry using the `pry-byebug` gem -* Remove i18n-tasks +* Remove `i18n-tasks` from generated Gemfile +* Accessibility: Add `lang` attribute to `html` element in layout 1.34.0 (November 15, 2015) diff --git a/lib/suspenders/version.rb b/lib/suspenders/version.rb index 90bf06ddf..095cec2fa 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.34.0" + VERSION = "1.35.0" end