diff --git a/CHANGELOG.md b/CHANGELOG.md index af5a7220..c566bb0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,14 @@ master === +3.1.6 +=== + * Magic sitemap-aware links and image references now work when your markdown engine is Kramdown (the default for Middleman). * Having the build directory be a symlink no longer causes the --clean (default) option to wipe out your build. * Fix handling paths and URLs with spaces in them. #961 * Loosen up Kramdown dependency to allow for using version 1.2. +* Loosen up Listen dependency so it works with sass betas. 3.1.5 === diff --git a/middleman-core/lib/middleman-core/version.rb b/middleman-core/lib/middleman-core/version.rb index b0fe07dc..be577433 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.5' unless const_defined?(:VERSION) + VERSION = '3.1.6' unless const_defined?(:VERSION) end diff --git a/middleman-core/middleman-core.gemspec b/middleman-core/middleman-core.gemspec index 958e2be0..c31e20b7 100644 --- a/middleman-core/middleman-core.gemspec +++ b/middleman-core/middleman-core.gemspec @@ -32,7 +32,7 @@ Gem::Specification.new do |s| s.add_dependency("activesupport", ["~> 3.2.6"]) # Watcher - s.add_dependency("listen", ["~> 1.2.2"]) + s.add_dependency("listen", ["~> 1.1"]) # i18n s.add_dependency("i18n", ["~> 0.6.1"])