Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions _layouts/sip.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@ <h5 class="contents">Status</h5>
It might be available as an experimental feature in the latest version of the compiler.
{% endif %}
</p>
{% else if page.stage == "completed" %}
{% elsif page.stage == "completed" and page.status == "shipped" %}
<p>
This proposal has been implemented,
{% if page.status == "accepted" %}
it will be available in the next minor release of the compiler.
{% else if page.status == "shipped" %}
{% if page.shipped %}
it has been made available as a <a href="https://scala-lang.org/api/3.x/docs/docs/reference/preview/index.html">preview feature</a> in Scala {{ page.shipped }} and
will be activated by default in the next minor release of the compiler.
{% else %}
it is available in the latest version of the compiler.
{% endif %}
</p>
Expand Down
2 changes: 1 addition & 1 deletion _sips/all.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ of the compiler (accepted). Click on a proposal to read its content.
<div class="sip-list">
<ul>
{% for sip in sips %}
{% if sip.stage == "completed" %}
{% if sip.stage == "completed" and sip.status == "shipped" %}
<li class="no-fragmentation">
<strong><a href="{{ sip.url }}">{{ sip.kind | default: 'SIP' }}-{{ sip.number }} - {{ sip.title }}</a></strong>
<div class="tag" style="background-color: {{ sipData[sip.status].color }}">{{ sipData[sip.status].text }}</div>
Expand Down
4 changes: 2 additions & 2 deletions _sips/sips/061-unroll-default-arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
layout: sip
number: 61
permalink: /sips/:title.html
stage: implementation
status: under-review
stage: completed
status: accepted
title: Unroll Default Arguments for Binary Compatibility
---

Expand Down
4 changes: 2 additions & 2 deletions _sips/sips/062-better-fors.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
layout: sip
number: 62
permalink: /sips/:title.html
stage: implementation
status: under-review
stage: completed
status: shipped
title: For comprehension improvements
---

Expand Down
2 changes: 1 addition & 1 deletion _sips/sips/068-reference-package-objects.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: sip
number: 68
permalink: /sips/:title.html
stage: completed
status: shipped
status: accepted
title: Reference-able Package Objects
---

Expand Down
Loading