File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## v2.0.1 (2016-02-10)
2+
3+ Changes:
4+
5+ - Fixed a bug to represent ` Section ` and ` Invert ` by ` to_code ` incorrectly.
6+
17## v2.0.0 (2016-02-09)
28
39Features:
Original file line number Diff line number Diff line change 11name : crustache
2- version : 2.0.0
2+ version : 2.0.1
33
44authors :
55 - TSUYUSATO Kitsune <make.just.on@gmail.com>
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ module Crustache::Syntax
5656 class {{ type .id }} < Template
5757 include Tag
5858
59- def initialize (@value : String , @content : [] of Node ); end
59+ def initialize (@value : String , @content : Array ( Node ) ); end
6060
6161 macro def to_code (io) : Nil
6262 io << " ::\{ { @type.name.id }}.new("
@@ -69,7 +69,6 @@ module Crustache::Syntax
6969 flag = true
7070 end
7171 io << " ] of ::Crustache::Syntax::Node)"
72- io << " )"
7372 nil
7473 end
7574 end
Original file line number Diff line number Diff line change 11module Crustache
2- VERSION = " 2.0.0 "
2+ VERSION = " 2.0.1 "
33end
You can’t perform that action at this time.
0 commit comments