update changelog

move_new_block
Thomas Reynolds 2016-01-10 16:37:12 -08:00
parent 4243676073
commit 47d0e1cb7b
2 changed files with 13 additions and 2 deletions

View File

@ -1,7 +1,18 @@
master
===
# 4.0.0.rc.3
# 4.1.0
* Add rewrite_ignore option to asset_hash, asset_host, cache_buster & relative_assets. This proc let's you opt-out of the extension behavior on a per-path basis.
* gzip extension now compresses svgs by default
* Fix the `encoding` option.
* Fix relative paths on `image_tag` helper.
* Correctly exit with error code on failed `init`
* Fixed `asset_hash` when path has query string or #hashes
* Fix new extension template
* Don't parse frontmatter on ignored files.
# 4.0.0
* Add `:locales` and `:data` source types to the list of files which trigger a live-reload.
* Rename i18n `lang` and `langs` to `locale` and `locales`.

View File

@ -1,5 +1,5 @@
module Middleman
# Current Version
# @return [String]
VERSION = '4.0.0' unless const_defined?(:VERSION)
VERSION = '4.1.0' unless const_defined?(:VERSION)
end