From 8eac168618e4053fb91c2b3458315d3dd3df90e0 Mon Sep 17 00:00:00 2001 From: Thomas Reynolds Date: Thu, 13 Jun 2013 09:23:31 -0700 Subject: [PATCH] new rc --- CHANGELOG.md | 4 ++++ middleman-core/lib/middleman-core/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19e3a243..80e5897e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,10 @@ === * Blocks with different templating languages than their layout now work as expected. #860 +* Ruby 1.8 users will need to add the following to their Gemfiles: + platforms :mri_18 do + gem "ruby18_source_location" + end * The `endpoint` method allows the building of Rack-based files or arbitrary content. 3.1.0.rc.2 diff --git a/middleman-core/lib/middleman-core/version.rb b/middleman-core/lib/middleman-core/version.rb index 2280046f..9138a5dd 100644 --- a/middleman-core/lib/middleman-core/version.rb +++ b/middleman-core/lib/middleman-core/version.rb @@ -1,5 +1,5 @@ module Middleman # Current Version # @return [String] - VERSION = '3.1.0.rc.3' unless const_defined?(:VERSION) + VERSION = '3.1.0.rc.4' unless const_defined?(:VERSION) end