Skip to content

Commit 9118ecb

Browse files
Merge pull request #637 from jvican/update-sip-status-december
Update status of proposals
2 parents 8870111 + 466be72 commit 9118ecb

17 files changed

+41
-12
lines changed

_includes/allsids.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@
1111
<span class="label light-warning">Postponed</span>
1212
{% elsif post.vote-status == 'under review' %}
1313
<span class="label warning">Under Review</span>
14+
{% elsif post.vote-status == 'under revision' %}
15+
<span class="label warning">Under Revision</span>
1416
{% elsif post.vote-status == 'numbered' %}
1517
<span class="label notice">Numbered</span>
18+
{% elsif post.vote-status == 'dormant' %}
19+
<span class="label light-warning">Dormant</span>
1620
{% elsif post.vote-status == 'not accepted' %}
1721
<span class="label danger">Not Accepted</span>
1822
{% elsif post.vote-status == 'rejected' %}

_includes/toc.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,18 @@
3131
<strong style="font-size: 15px;">Under Review</strong>
3232
<p style="padding-top: 10px">{{ page.vote-text }}</p>
3333
</div>
34+
{% elsif page.vote-status == 'under revision' %}
35+
<p class="contents">SIP Committee Decision</p>
36+
<div class="alert-message warning" style="margin-left: 15px;">
37+
<strong style="font-size: 15px;">Under Revision</strong>
38+
<p style="padding-top: 10px">{{ page.vote-text }}</p>
39+
</div>
40+
{% elsif page.vote-status == 'dormant' %}
41+
<p class="contents">SIP Committee Decision</p>
42+
<div class="alert-message light-warning" style="margin-left: 15px;">
43+
<strong style="font-size: 15px;">Dormant</strong>
44+
<p style="padding-top: 10px">{{ page.vote-text }}</p>
45+
</div>
3446
{% elsif page.vote-status == 'rejected' %}
3547
<p class="contents">SIP Committee Decision</p>
3648
<div class="alert-message danger" style="margin-left: 15px;">

sips/.jekyll-metadata

6.57 KB
Binary file not shown.

sips/completed/_posts/2011-10-12-implicit-classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ disqus: true
44
title: SIP-13 - Implicit classes
55

66
vote-status: accepted
7-
vote-text: This SIP is in Accepted status currently. Barring a completed implementation.
7+
vote-text: This SIP has already been accepted.
88
---
99

1010
**By: Josh Suereth**

sips/completed/_posts/2011-10-13-string-interpolation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: sip
33
title: SIP-11 - String Interpolation
44

55
vote-status: accepted
6-
vote-text: This SIP is in Accepted status currently. We expect a SIP for 2.11 that will allow the desugared form of interpolated strings in the pattern matcher to become valid syntax. This SIP only allows the sugared interpolated strings to work.
6+
vote-text: This SIP has already been accepted. We expect a SIP for 2.11 that will allow the desugared form of interpolated strings in the pattern matcher to become valid syntax. This SIP only allows the sugared interpolated strings to work.
77
---
88

99
**By: Martin Odersky**

sips/completed/_posts/2012-01-21-futures-promises.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ disqus: true
44
title: SIP-14 - Futures and Promises
55

66
vote-status: accepted
7-
vote-text: This SIP is in Accepted status currently.
7+
vote-text: This SIP has already been accepted.
88
---
99

1010
**By: Philipp Haller, Aleksandar Prokopec, Heather Miller, Viktor Klang, Roland Kuhn, and Vojin Jovanovic**

sips/completed/_posts/2012-01-30-value-classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: sip
33
title: SIP-15 - Value Classes
44

55
vote-status: accepted
6-
vote-text: This is in Accepted status. There is concern for numerical computing. We think future SIP(s), using work from SIP-15, can provide more benefit to numerical computing users. The SIP as it exists benefits all users of implicit enrichment classes, and takes us much further to unboxed high performance code. This SIP does not exclude further work towards improving numerical computing in Scala.
6+
vote-text: This SIP has already been accepted. There has been concern for numerical computing. We think future SIP(s), using work from SIP-15, can provide more benefit to numerical computing users. The SIP as it exists benefits all users of implicit enrichment classes, and takes us much further to unboxed high performance code. This SIP does not exclude further work towards improving numerical computing in Scala.
77
---
88

99
**By: Martin Odersky and Jeff Olson and Paul Phillips and Joshua Suereth**

sips/completed/_posts/2012-03-13-type-dynamic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: sip
33
title: SIP-17 - Type Dynamic
44

55
vote-status: accepted
6-
vote-text: This is in Accept status.
6+
vote-text: This SIP has already been accepted.
77
---
88

99

sips/pending/_posts/2016-06-25-trailing-commas.md renamed to sips/completed/_posts/2016-06-25-trailing-commas.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
layout: sip
33
disqus: true
44
title: SIP-27 - Trailing Commas
5+
redirect_from: "/sips/pending/trailing-commas.html"
56

6-
vote-status: under review
7-
vote-text: The following proposal needs to be updated, since only the specialized case version (with new lines) has been accepted. For more information, check the <a href="http://docs.scala-lang.org/sips/minutes/sip-20th-september-minutes.html">minutes</a>.
7+
vote-status: approved
8+
vote-text: The following proposal has been approved but the spec needs to be updated and the implementation has to be ported from Parsers to Scanner.
89
---
910

1011
**By: Dale Wijnand**

sips/pending/_posts/2013-05-31-improved-lazy-val-initialization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ disqus: true
44
title: SIP-20 - Improved Lazy Vals Initialization
55

66
vote-status: under review
7-
vote-text: Next iteration takes place in October 2016.
7+
vote-text: Dormant. This proposal lacks an implementation for Scalac and is looking for a new owner.
88
---
99

1010
**By: Aleksandar Prokopec, Dmitry Petrashko, Miguel Garcia, Jason Zaugg, Hubert Plociniczak, Viktor Klang, Martin Odersky**

sips/pending/_posts/2013-06-10-spores.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ disqus: true
44
title: SIP-21 - Spores
55

66
vote-status: under review
7-
vote-text: Next iteration takes place in November 2016. Check <a href="http://localhost:4000/sips/minutes/sip-20th-september-minutes.html">September's minutes</a>.
7+
vote-text: Next iteration takes place in January/February 2017 by request of the authors.
88
---
99

1010
**By: Heather Miller, Martin Odersky, and Philipp Haller**

sips/pending/_posts/2013-06-30-async.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ disqus: true
44
title: SIP-22 - Async
55

66
vote-status: postponed
7-
vote-text: Authors have asked to postpone until further notice. They will eventually open the proposal when some details in the implementation are ready. Check <a href="http://localhost:4000/sips/minutes/sip-minutes.html">July's minutes</a>.
7+
vote-text: Authors have marked this proposal as dormant. Details in the implementation need to be figured out. Check <a href="http://localhost:4000/sips/minutes/sip-minutes.html">July's minutes</a>.
88
---
99

1010
**By: Philipp Haller and Jason Zaugg**

sips/pending/_posts/2014-06-27-42.type.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
layout: sip
33
disqus: true
44
title: SIP-23 - Literal-based singleton types
5+
6+
vote-status: dormant
7+
vote-text: This proposal is dormant because original authors are not available for its review. There is an implementation <a href="https://github.com/scala/scala/pull/5310">here</a>.
58
---
69

710
**By: George Leontiev, Eugene Burmako, Jason Zaugg, Adriaan Moors, Paul Phillips**

sips/pending/_posts/2015-6-18-repeated-byname.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
layout: sip
33
title: SIP-24 - Repeated By Name Parameters
44
disqus: true
5+
6+
vote-status: dormant
7+
vote-text: Looking for a new owner. This proposal needs to be updated according to the <a href="https://www.youtube.com/watch?v=hrxp4PGbi6s">SIP meeting in November 2016</a>.
58
---
69

710
**By: Martin Odersky**

sips/pending/_posts/2015-6-18-trait-parameters.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
layout: sip
33
title: SIP 25 - Trait Parameters
44
disqus: true
5+
6+
vote-status: under review
7+
vote-text: The board agreed to schedule the next iteration of the evaluation process in 6 months, since there’s no implementation yet and the authors need time to produce one.
58
---
69

710
__Martin Odersky__

sips/pending/_posts/2016-01-11-static-members.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
layout: sip
33
title: SIP 25 - @static fields and methods in Scala objects(SI-4581)
44
disqus: true
5+
6+
vote-status: under revision
7+
vote-text: Authors need to update the proposal before the next review.
58
---
69

710
__Dmitry Petrashko, Sébastien Doeraene and Martin Odersky__

sips/pending/_posts/2016-09-09-inline-meta.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ layout: sip
33
disqus: true
44
title: SIP-28 and SIP-29 - Inline meta
55

6-
vote-status: numbered
7-
vote-text: The following proposal has been split and numbered as SIP-28 (Inline) and SIP-29 (Meta). For more information on this decision, check the <a href="http://docs.scala-lang.org/sips/minutes/sip-20th-september-minutes.html">minutes</a>.
6+
vote-status: under revision
7+
vote-text: The following proposal has been split and numbered as SIP-28 (Inline) and SIP-29 (Meta). For more information on this decision, check the <a href="http://docs.scala-lang.org/sips/minutes/sip-20th-september-minutes.html">minutes</a>. The authors need to split the proposal and update it.
88
---
99

1010
**By: Eugene Burmako, Sébastien Doeraene, Vojin Jovanovic, Martin Odersky, Dmitry Petrashko, Denys Shabalin**

0 commit comments

Comments
 (0)