Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new section for Swift 3.1 proposals #522

Merged
merged 1 commit into from Sep 9, 2016
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.xml
Expand Up @@ -45,7 +45,7 @@
<proposal id="0042" status="accepted" name="Flattening the function type of unapplied method references" filename="0042-flatten-method-types.md"/>
<proposal id="0043" status="implemented" swift-version="3" name="Declare variables in 'case' labels with multiple patterns" filename="0043-declare-variables-in-case-labels-with-multiple-patterns.md"/>
<proposal id="0044" status="implemented" swift-version="3" name="Import as Member" filename="0044-import-as-member.md"/>
<proposal id="0045" status="implemented" swift-version="3" name="Add prefix(while:) and drop(while:) to the stdlib" filename="0045-scan-takewhile-dropwhile.md"/>
<proposal id="0045" status="implemented" swift-version="3.1" name="Add prefix(while:) and drop(while:) to the stdlib" filename="0045-scan-takewhile-dropwhile.md"/>
<proposal id="0046" status="implemented" swift-version="3" name="Establish consistent label behavior across all parameters including first labels" filename="0046-first-label.md"/>
<proposal id="0047" status="implemented" swift-version="3" name="Defaulting non-Void functions so they warn on unused results" filename="0047-nonvoid-warn.md"/>
<proposal id="0048" status="implemented" swift-version="3" name="Generic Type Aliases" filename="0048-generic-typealias.md"/>
Expand Down
9 changes: 7 additions & 2 deletions index.xslt
Expand Up @@ -39,12 +39,17 @@
</xsl:call-template>

<xsl:call-template name="section">
<xsl:with-param name="title">Implemented for Swift 3</xsl:with-param>
<xsl:with-param name="title">Implemented (Swift 3.1)</xsl:with-param>
<xsl:with-param name="proposals" select="proposal[@status='implemented'][@swift-version = 3.1]"/>
</xsl:call-template>

<xsl:call-template name="section">
<xsl:with-param name="title">Implemented (Swift 3)</xsl:with-param>
<xsl:with-param name="proposals" select="proposal[@status='implemented'][@swift-version = 3]"/>
</xsl:call-template>

<xsl:call-template name="section">
<xsl:with-param name="title">Implemented for Swift 2.2</xsl:with-param>
<xsl:with-param name="title">Implemented (Swift 2.2)</xsl:with-param>
<xsl:with-param name="proposals" select="proposal[@status='implemented'][@swift-version = 2.2]"/>
</xsl:call-template>

Expand Down
4 changes: 2 additions & 2 deletions proposals/0045-scan-takewhile-dropwhile.md
Expand Up @@ -2,7 +2,7 @@

* Proposal: [SE-0045](0045-scan-takewhile-dropwhile.md)
* Author: [Kevin Ballard](https://github.com/kballard)
* Status: **Accepted**
* Status: **Implemented (Swift 3.1)**
* Decision Notes: [Rationale](https://lists.swift.org/pipermail/swift-evolution-announce/2016-May/000136.html)
* Bugs: [SR-1516](https://bugs.swift.org/browse/SR-1516)
* Review Manager: [Chris Lattner](http://github.com/lattner)
Expand Down Expand Up @@ -154,4 +154,4 @@ and `unfold(_:applying:)` (see [revision 3][rev-3]). This proposal was partially
accepted, with `scan(_:combine:)` rejected on grounds of low utility and
`unfold(_:applying:)` rejected on grounds of poor naming (see [rationale][]).

[rationale](https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20160502/016543.html)
[rationale]: <https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20160502/016543.html>