From a02160bba67e231497dab21d4c646a485fd24a37 Mon Sep 17 00:00:00 2001 From: Thomas Reynolds Date: Wed, 7 Nov 2018 11:47:33 -0800 Subject: [PATCH] Bump version --- CHANGELOG.md | 2 ++ middleman-core/lib/middleman-core/version.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11d6bc5f..951b03f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ master === +# 4.3.0.rc.4 + * i18n was accidentally duplicating requests for extension-based template (file.es.html) * Make sass cache configurable with either `SASS_CACHE_LOCATION` env variable or `sass_cache_location` Middleman config variable. (#2213) diff --git a/middleman-core/lib/middleman-core/version.rb b/middleman-core/lib/middleman-core/version.rb index 748bec0e..f03f26a8 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.3.0.rc.3'.freeze unless const_defined?(:VERSION) + VERSION = '4.3.0.rc.4'.freeze unless const_defined?(:VERSION) end