From a3519bdf370bc5f98cd0058f8f45e67b7200bc31 Mon Sep 17 00:00:00 2001 From: Thomas Reynolds Date: Mon, 23 Feb 2015 12:28:30 -0800 Subject: [PATCH] Bump --- CHANGELOG.md | 9 +++++++++ middleman-core/lib/middleman-core/version.rb | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1526a41..6316a485 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ master === +3.3.10 +=== +* Fixes #1469, missing `cattr_accessor` in Redcarpet support. +* Fix slim >= 3.0.0 deprecation warning + +3.3.9 +=== +* Moved main `Application` from requiring to autoloading to work around some double-loading issues in Docker. + 3.3.8 === * Define a mime type for sourcemaps. #1451 diff --git a/middleman-core/lib/middleman-core/version.rb b/middleman-core/lib/middleman-core/version.rb index 66f04098..782464f2 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.3.9' unless const_defined?(:VERSION) + VERSION = '3.3.10' unless const_defined?(:VERSION) end