From e8f10fe3c22237ced1c8e75b93f69644f89edc18 Mon Sep 17 00:00:00 2001 From: Thomas Reynolds Date: Tue, 31 May 2016 13:08:04 -0700 Subject: [PATCH] prep --- CHANGELOG.md | 8 ++++++++ middleman-core/lib/middleman-core/version.rb | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 579fa1f6..b25a9816 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ master === +# 4.1.9 + +* Fix `--watcher-*` CLI flags. +* Allow spaces in paths to work with `link_to`. Fixes #1914 +* Add support for dotenv +* Fix asset_url with asset_hash (#1919) +* Allow partial lookups without a current_resource (#1912) + # 4.1.8 * Expose `development?` and `production?` helpers to template context. diff --git a/middleman-core/lib/middleman-core/version.rb b/middleman-core/lib/middleman-core/version.rb index 088c1e7f..280b2eca 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 = '4.1.8'.freeze unless const_defined?(:VERSION) + VERSION = '4.1.9'.freeze unless const_defined?(:VERSION) end