From de5234818dfff89e5d67a54cdc00a1f5c8291096 Mon Sep 17 00:00:00 2001 From: Thomas Reynolds Date: Mon, 4 May 2015 09:40:33 -0700 Subject: [PATCH] Prep --- 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 7c7b0f44..d0be096e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ master === +3.3.12 +=== * The preview server can now serve over HTTPS using the `--https` flag. It will use an automatic self-signed cert which can be overridden using `--ssl_certificate` and `--ssl_private_key`. These settings can also be set in `config.rb` * The preview server URL will use the local hostname rather than '0.0.0.0'. It will also print out a URL based on the host's public IP in case that's useful. * The `--host` flag and `config.rb` setting have been removed - the preview server will always bind to all interfaces. diff --git a/middleman-core/lib/middleman-core/version.rb b/middleman-core/lib/middleman-core/version.rb index 10156e39..7dfc22a8 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.11' unless const_defined?(:VERSION) + VERSION = '3.3.12' unless const_defined?(:VERSION) end