This commit is contained in:
Thomas Reynolds 2013-06-13 09:23:31 -07:00
parent 913d2b7049
commit 8eac168618
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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