{{ currentVersionObject.planTitle }} release notes
{% for patch in releaseNotes %}
{% if patch.currentWeek %}
{% assign bannerText = site.data.ui.release_notes.banner_text_current %}
{% else %}
{% assign bannerText = site.data.ui.release_notes.banner_text_past | append: " " | append: patch.friendlyDate | append: "." %}
{% endif %}
{% endfor %}
{% endfor %}
{{ patch.title }}
{% if patch.release_candidate %} Release Candidate {% endif %}{{ patch.friendlyDate }} - {{ bannerText }}
{{ patch.intro }}
{% for section in patch.sections %}
-
{% for note in section[1] %}
-
{% if note.heading %}
{% assign slug = note.heading | slugify %}
{{ note.heading }}
-
{% for subNote in note.notes %}
- {{ subNote }} {% endfor %}
{% endfor %}