forked from ripple/ripplecharts-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.tpl
23 lines (19 loc) · 798 Bytes
/
changelog.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# <%= version%> (<%= today%>)
<% if (_(changelog.feat).size() > 0) { %> ## Features
<% _(changelog.feat).forEach(function(changes, scope) { %>
- **<%= scope%>:**
<% changes.forEach(function(change) { %> - <%= change.msg%> (<%= helpers.commitLink(change.sha1) %>)
<% }); %>
<% }); %> <% } %>
<% if (_(changelog.fix).size() > 0) { %> ## Fixes
<% _(changelog.fix).forEach(function(changes, scope) { %>
- **<%= scope%>:**
<% changes.forEach(function(change) { %> - <%= change.msg%> (<%= helpers.commitLink(change.sha1) %>)
<% }); %>
<% }); %> <% } %>
<% if (_(changelog.breaking).size() > 0) { %> ## Breaking Changes
<% _(changelog.breaking).forEach(function(changes, scope) { %>
- **<%= scope%>:**
<% changes.forEach(function(change) { %> <%= change.msg%>
<% }); %>
<% }); %> <% } %>