Skip to content

Latest commit

 

History

History
12 lines (12 loc) · 648 Bytes

changelog-template.md

File metadata and controls

12 lines (12 loc) · 648 Bytes

<% if(logo) { %><%= '\n\n' %><% } %># <%= title %> <% if(intro) { %><%= '\n' %><%= intro %><%= '\n' %><% } %> <% if(version) { %>##<% if(version.date){ %><%= version.date %><% } %><%= '\n' %><% } %> <% _.forEach(sections, function(section){ if(section.commitsCount > 0) { %>

<%= section.title %>

<% _.forEach(section.commits, function(commit){ %> - <%= printCommit(commit, true) %><% }) %> <% _.forEach(section.components, function(component){ %> - <%= component.name %> <% _.forEach(component.commits, function(commit){ %> - <%= printCommit(commit, true) %><% }) %> <% }) %> <% } %> <% }) %>