From cbab60f8b9d82d26a50af630241b7dfb7676fae2 Mon Sep 17 00:00:00 2001 From: Damian Galarza Date: Fri, 15 Apr 2016 10:25:37 -0400 Subject: [PATCH] v3.0.0 --- Gemfile.lock | 2 +- NEWS.md | 5 +++++ README.md | 8 ++------ lib/high_voltage/version.rb | 2 +- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index fea313f..5d03a83 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - high_voltage (2.4.0) + high_voltage (3.0.0) GEM remote: https://rubygems.org/ diff --git a/NEWS.md b/NEWS.md index 1362b12..9d1159a 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,8 @@ +New for 3.0.0 ++ HighVoltage now supports Rails 5.0.0.beta3 and up. ++ Properly handle extensions in root route constraint requests. ++ Removes caching in preparation for Rails 5. + New for 2.4.0 + Retrieve a list of available static pages via `HighVoltage.page_ids`. + Properly handle page ids which are blank when being sanitized. diff --git a/README.md b/README.md index eadbf84..e60e006 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,9 @@ Yeah, like "About us", "Directions", marketing pages, etc. Include in your Gemfile: ```ruby -gem 'high_voltage', '~> 2.4.0' +gem 'high_voltage', '~> 3.0.0' ``` -For Rails versions prior to 3.0, use the 0.9.2 tag of high_voltage: - - https://github.com/thoughtbot/high_voltage/tree/v0.9.2 - ## Usage Write your static pages and put them in the RAILS_ROOT/app/views/pages directory. @@ -362,7 +358,7 @@ Thank you, [contributors]! ## License -High Voltage is copyright © 2009-2015 thoughtbot. It is free software, and may +High Voltage is copyright © 2009-2016 thoughtbot. It is free software, and may be redistributed under the terms specified in the [`LICENSE`] file. [`LICENSE`]: /MIT-LICENSE diff --git a/lib/high_voltage/version.rb b/lib/high_voltage/version.rb index 94e1eec..7bc6204 100644 --- a/lib/high_voltage/version.rb +++ b/lib/high_voltage/version.rb @@ -1,3 +1,3 @@ module HighVoltage - VERSION = "2.4.0".freeze + VERSION = "3.0.0".freeze end