prep
This commit is contained in:
parent
48024772db
commit
cd9964edbe
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -1,6 +1,24 @@
|
|||
master
|
||||
===
|
||||
|
||||
3.1.5
|
||||
===
|
||||
|
||||
* Escape filenames in regexes. Fixes #942.
|
||||
* Create automated alt tag addition, based on image name.
|
||||
* Add listener latency option. (Aliased to -l)
|
||||
* Add support/tests for Redcarpet 3.0.0 features
|
||||
- :underline
|
||||
- :highlight
|
||||
- :disable_indented_code_blocks
|
||||
* Fix support for
|
||||
- :link_attributes
|
||||
- :filter_html
|
||||
|
||||
3.1.4
|
||||
===
|
||||
|
||||
* Support kramdown 1.1
|
||||
* Support redcarpet's :no_links & :no_images. #951
|
||||
|
||||
3.1.3
|
||||
|
|
2
Gemfile
2
Gemfile
|
@ -16,7 +16,7 @@ gem "haml", "~> 4.0.0", :require => false # Make sure to use Haml 4 for tests
|
|||
gem "sinatra", :require => false
|
||||
gem "slim", :require => false
|
||||
gem "liquid", :require => false
|
||||
gem "less", :require => false
|
||||
gem "less", "~> 2.3.0", :require => false
|
||||
gem "stylus", :require => false
|
||||
|
||||
# gem "pry", :require => false
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
module Middleman
|
||||
# Current Version
|
||||
# @return [String]
|
||||
VERSION = '3.1.4' unless const_defined?(:VERSION)
|
||||
VERSION = '3.1.5' unless const_defined?(:VERSION)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue