v3-stable v3.3.12
Thomas Reynolds 2015-05-04 09:40:33 -07:00
parent 08c3969eb3
commit de5234818d
2 changed files with 3 additions and 1 deletions

View File

@ -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.

View File

@ -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