-
Notifications
You must be signed in to change notification settings - Fork 15
/
releases.html
59 lines (52 loc) · 2.32 KB
/
releases.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
permalink: /releases.html
layout: page
title: Releases
header: Releases
group: navigation
---
{% include JB/setup %}
<h3>Global changelog</h3>
<p>A global changelog covering all the changes in all CGAL versions can be found
<a href="https://github.com/CGAL/cgal/blob/master/Installation/CHANGES.md">here</a>.</p>
<h3>Releases in reverse chronological order</h3>
<p>Semantic versioning is used to number the CGAL releases: the version of a release is a sequence
of three digits (Major.Minor.Patch), and an optional pre-release tag in the case of beta versions.</p>
<p>All the CGAL releases are listed below. Each release's page contains the list of changes
that this specific release brought, as well links to download the release and access the CGAL
documentation at that time.</p>
<div class="row">
<div class="col-md-4">
<ul>
{% assign news = site.posts %}
{% for post in news %}
{% assign is_release = false %}
{% for tag in post.tags %}
{% if tag contains "release" %}
{% assign is_release = true %}
{% break %}
{% endif %}
{% endfor %}
{% if is_release == false %}
{% continue %}
{% endif %}
{% capture this_day %}{{ post.date | date: "%d" }}{% endcapture %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% capture this_month %}{{ post.date | date: "%B" }}{% endcapture %}
{% if post.tags contains "latest-release" or post.tags contains "active-beta-release" %}
<li><b><a href="{{ site.baseurl }}{{post.url}}" class="active">{{post.description}}</a> ({{this_month}} {{this_year}})</b></li>
{% else %}
{% unless post.tags contains "beta-release" %}
<li><a href="{{ site.baseurl }}{{post.url}}" class="active">{{post.description}}</a> ({{this_month}} {{this_year}})</li>
{% endunless %}
{% endif %}
{% endfor %}
</ul>
</div>
<div class="col-md-8">
<img class="img-responsive" src="images/release_history_sloccount.png" alt="Releases size graph">
<caption align=BOTTOM>Number of lines of code of CGAL (using <a href="http://www.dwheeler.com/sloccount/"> David A. Wheeler's 'SLOCCount'</a>, restricted to the <code>include/CGAL/</code> and <code>src/</code> directories).
</caption>
</p>
</div>
</div>