What's Changed
Feat
- You can now manually create cached templates with
cached_template()
(#647)
Fix
- Fixed template caching. (#647)
Refactor
- The previously undocumented
get_template
was made private. (#647) - In it's place, there's a new
get_template
, which supersedesget_template_string
(will be removed in v1). The newget_template
is the same asget_template_string
, except it allows to return either a string or a Template instance. (#647) - You now must use only one of
template
,get_template
,template_name
, orget_template_name
. (#647)
Full Changelog: 0.96...0.97