feature/manifest v4.1.1
Thomas Reynolds 2016-02-02 18:49:14 -08:00
parent f596d8ebf5
commit 6de25dfd0e
2 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ module Middleman
# A flattened list of all extensions which are automatically activated
# @return [Array<Symbol>] A list of extension names which are automatically activated.
def auto_activated
@auto_activate.values.map(&:to_a).flat_map(&:name)
@auto_activate.values.map(&:to_a).flatten.map(&:name)
end
# @api private

View File

@ -1,5 +1,5 @@
module Middleman
# Current Version
# @return [String]
VERSION = '4.1.0'.freeze unless const_defined?(:VERSION)
VERSION = '4.1.1'.freeze unless const_defined?(:VERSION)
end