blob: 472ca619c690f76706e2671a61f247847fff0f08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<%!
title = "Changelog"
uses_toc = True
%>
<%inherit file="/page.mako" />
<%def name="preface()">
<p>
This is a condensed changelog (starting with version <a href="#0.8.5">0.8.5</a>) for portato. The complete one can be found in the <a href="http://git.necoro.eu/portato.git/tree/doc/NEWS">sources</a>.
</p>
<p> <strong>Note:</strong> Releases with a forth version number (e.g. <em>0.9.0.2</em>) are bugfix releasse and therefore not mentioned extra. From <a href="#0.10">0.10</a> onwards, the third part is omitted. This means, that now everything with a third number is a bugfix release.
</p>
</%def>
% for html, name in h.getChangelogs("/changelogs"):
<%self:h2 tag="h3">${name}</%self:h2>
${html}
% endfor
|