You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{% comment %}Load major-version support details from _data/versions.yml. Uncomment the commented line below to print the structure to debug. {% endcomment %}
17
+
{% assign vers = site.data.versions | where_exp: "vers", "vers.major_version == page.major_version" | first %}
18
+
19
+
{% if rel.size > 0 %}
20
+
{% assign today = "today" | date: "%Y-%m-%d" %}
21
+
{% comment %}vers: {{ vers }}{% endcomment %}
22
+
23
+
{% include releases/testing-release-notice.md major_version=vers %}
24
+
25
+
{% include releases/whats-new-intro.md major_version=vers %}
26
+
27
+
{% for r in rel %}
28
+
{% include releases/{{ page.major_version }}/{{ r.release_name }}.md release=r.release_name %}
29
+
{% endfor %}
30
+
31
+
{% else %}
32
+
No releases are available for this version. See the [Releases]({% link releases/index.md %}) page for all available releases.
0 commit comments