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