+ {% unless release_version.release_notes == empty %}
+ {% assign release_article = site.article | find: "url", release_version.release_notes %}
+
+ {% unless release_article == empty %}
+
+
+
+ {{ release_article.excerpt }}
+
+
+ {% endunless %}
+ {% else %}
+
+ Release notes are not ready yet. You can check the complete list of changes using our interactive changelog.
+
+ {% endunless %}
+
+
+
+
+
Main downloads
+
+ {% assign download_primary = release_version | get_download_primary: false %}
+ {% for primary in download_primary %}
+ {% comment %}
+ When iterating over a hash, you get an array. 0-th item is the key, and
+ 1-st item is the value.
+ {% endcomment %}
+ {% assign platform_info = site.data.download_platforms | find: "name", primary[1] %}
+
+
+
+

+ {{ platform_info.title }}
+
+
+
+ {% assign mono_download = release_version | make_download: primary[1], true, "tuxfamily" %}
+ {% if mono_download == "#" %}
+
+ {% else %}
+
+
+ .NET
+
+
+ {% endif %}
+ {% endfor %}
+
+